/* ===================================
   Global Styles & Variables
   =================================== */
:root {
  --color-primary: #c81e73; /* Pink */
  --color-secondary: #025a4e; /* Dark Green */
  --color-accent: #f6de41; /* Yellow */
  --color-hot-red: #db4e39;
  --color-light-blue: #8be0f4;
  --color-text: #333333;
  --color-white: #ffffff;
  --color-dark: #000000;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Afacad', sans-serif;
  --font-script: 'Kalam', cursive;
  --font-special: 'Hot Mess', sans-serif;

  --container-width: 1200px;
  --nav-height: 80px;
}

/* --- Basic Reset & Font Setup --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Hot Mess';
  /* Make sure this path is correct relative to your CSS file */
  src: url('fonts/hot_mess.woff') format('woff');
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: 1.75rem;
}
p {
  margin-bottom: 1rem;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
i,
em {
  font-family: var(--font-script);
}

.text-center {
  text-align: center;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.callout-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
  right: -20px; /* Adjust as needed */
}

.btn {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn:hover {
  background-color: #013d34;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background-color: var(--color-light-blue);
  color: var(--color-secondary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background-color: #79d4eb;
  text-decoration: none;
}

/* ===================================
           Header & Navigation
           =================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
}

.nav-logo img {
  height: 45px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: none;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  color: var(--color-text);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.menu-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle-btn:hover {
  transform: scale(1.1);
}

.menu-toggle-btn svg rect {
  fill: var(--color-text);
  transition: fill 0.3s ease;
}

.menu-toggle-btn:hover svg rect {
  fill: var(--color-primary);
}

/* ===================================
           Submenu Styles
           =================================== */
.nav-item {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-white);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0.5rem 0;
}

.nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  margin: 0;
}

.sub-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-text);
  font-weight: 500;
  text-transform: none;
  transition: all 0.3s ease;
  border-bottom: none;
}

.sub-menu a:hover {
  background-color: #f8f9fa;
  color: var(--color-primary);
  text-decoration: none;
}

.sub-menu a::after {
  display: none;
}

/* Mobile menu styles */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 1rem;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    box-sizing: border-box;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    display: flex;
    align-items: center;
    animation: fadeInDown 0.5s ease-out;
  }

  .nav-item {
    width: 100%;
    position: relative;
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  /* Mobile submenu styles */
  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.active .sub-menu {
    max-height: 500px;
  }

  .sub-menu a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f5f9;
  }

  .sub-menu a:last-child {
    border-bottom: none;
  }

  .nav-item.has-submenu > a {
    position: relative;
    padding-right: 2rem;
  }

  .nav-item.has-submenu > a::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .nav-item.has-submenu.active > a::after {
    content: '-';
  }
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    align-items: center;
  }

  .menu-toggle-btn {
    display: none;
  }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 0 1rem;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  padding-top: 120px;
  max-width: 800px;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
}
.hero-title .rotating-text {
  font-family: var(--font-special);
  color: var(--color-accent);
  display: block;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  transition: opacity 0.5s ease-in-out;
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.scroll-down-btn {
  color: white;
  font-size: 3rem;
  margin-top: 2rem;
  display: inline-block;
}

/* ===================================
   General Section Styling
   =================================== */
section {
  padding: 5rem 0;
}
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .two-column-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ===================================
   Start Here Section (Corrected)
   =================================== */

/* Main section container */
.start-here-section {
  background-color: var(--color-accent); /* Yellow background */
  position: relative; /* This is CRITICAL for z-index and overflow to work */
  overflow: hidden; /* This clips the rotated shape that goes outside the bounds */
  padding-top: 6rem;
  padding-bottom: 11rem;
}

/* The content container (image + text) */
.start-here-section .two-column-layout {
  position: relative; /* Needed for z-index context */
  z-index: 2; /* Ensures content is above the diagonal shape */
  align-items: center;
}

.start-here-section .column-image {
  order: 1;
  text-align: center;
}

.start-here-section .column-image img {
  max-width: 100%;
  height: auto;
}

.start-here-section .column-text {
  order: 2;
  color: var(--color-secondary);
}

/* The diagonal red shape */
.diagonal-shape {
  content: '';
  position: absolute;
  background-color: var(--color-hot-red);
  width: 150%;
  height: 250px;
  bottom: -100px;
  left: -10%;
  transform: rotate(4deg);
  z-index: 100; /* Sits ABOVE the yellow background but BELOW the content container */
}

/* Text and Button styling */
.start-here-section h2 {
  color: var(--color-secondary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.start-here-section p {
  color: var(--color-secondary);
  font-size: 1.4rem;
  max-width: 500px;
}

.eyebrow-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.eyebrow-arrow {
  position: absolute;
  width: 60px;
  height: auto;
  bottom: 90%;
  right: 110%;
  transform: rotate(12deg);
}

.start-here-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-icon {
  width: 14px;
  height: 14px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .start-here-section {
    padding-top: 4rem; /* More space for mobile */
  }
  .start-here-section .column-text {
    text-align: center;
    margin-top: 2rem;
  }
  .eyebrow-arrow {
    left: 50%;
    transform: translateX(-50%) rotate(12deg);
    bottom: 100%;
  }
  .start-here-section p {
    margin-left: auto;
    margin-right: auto;
  }
  .diagonal-shape {
    height: 150px;
    bottom: -60px;
    transform: rotate(5deg);
  }
}

@media (min-width: 768px) {
  .start-here-section .column-image {
    order: -1; /* Image appears first on desktop */
  }
  .start-here-section .column-text {
    padding-left: 2rem;
  }
}

/* ===================================
   Who We Are Section (Corrected)
   =================================== */
.who-we-are-section {
  background-color: var(--color-hot-red);
  color: var(--color-white);
  padding: 5rem 0 0; /* No bottom padding */
}

.who-we-are-section .title-special {
  color: var(--color-light-blue);
  font-family: var(--font-special);
  font-size: clamp(3rem, 7vw, 4.5rem);
  text-transform: uppercase;
  margin: 1rem auto 3rem;
  max-width: 900px;
}

.intro-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  align-items: center;
}

.intro-text p {
  font-size: 1.5rem;
  font-weight: 400;
}

.help-you-text {
  position: relative;
  display: inline-block;
  margin-top: 1.5rem;
}
.help-you-text p {
  font-style: italic;
}
.help-you-text .curved-arrow {
  position: absolute;
  width: 60px;
  top: -25px;
  right: -70px;
  transform: rotate(180deg);
  display: none; /* Hidden on mobile by default */
}

.intro-image-collage {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collage-img {
  position: absolute;
  border: 8px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 45%;
  border-radius: 10px;
}
.collage-img-1 {
  /* B&W image */
  transform: rotate(-8deg);
  z-index: 1;
  top: 0;
  left: 0;
}
.collage-img-2 {
  /* Color image */
  transform: rotate(5deg);
  z-index: 2;
  bottom: 0;
  right: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 4rem 0 4rem 0;
  text-align: center;
}

.feature-item img {
  height: 35px;
  margin: 0 auto 1rem auto;
}
.feature-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: white;
}
.feature-item p {
  font-size: 1.4rem;
  opacity: 0.95;
  padding: 0 1rem;
}

.who-we-are-section .btn-secondary {
  margin-bottom: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.full-width-image {
  width: 100%;
  display: block;
}

/* Desktop styles */
@media (min-width: 992px) {
  .intro-block {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .help-you-text .curved-arrow {
    display: block; /* Show arrow on desktop */
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-item p {
    padding: 0;
  }
}

/* ===================================
   The Posse Section (Corrected) - UPDATED FOR CENTER ALIGNMENT
   =================================== */

.the-posse-section {
  background-color: var(--color-white);
  position: relative; /* Context for tiger graphic */
  overflow: hidden; /* Prevent tiger from causing horizontal scroll */
  padding: 5rem 0;
  text-align: center; /* Added center alignment for entire section */
}

/* This is a new class to create the top two-column layout */
.the-posse-intro {
  display: grid;
  grid-template-columns: 1fr; /* Default to single column for mobile */
  gap: 2rem;
  align-items: start;
  text-align: center; /* Center on mobile */
}

.the-posse-intro .eyebrow {
  text-align: center; /* Changed from left to center */
  margin-left: auto;
  margin-right: auto;
}

.the-posse-intro h2 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  text-align: center; /* Changed from left to center */
}

.the-posse-intro h2 span {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
}

.the-posse-intro h2 .highlight {
  font-family: var(--font-special);
  color: var(--color-primary); /* Pink color */
  font-style: normal;
}

.the-posse-intro p {
  font-size: 1.4rem;
  max-width: 800px; /* Increased max-width for better readability when centered */
  text-align: center; /* Changed from left to center */
  margin-left: auto;
  margin-right: auto;
}

.the-posse-intro p strong {
  font-weight: 700;
}

.tiger-graphic {
  position: absolute;
  top: 0;
  right: -80px; /* Position it hanging off the right edge */
  width: 400px;
  z-index: 0;
  display: none; /* Hidden on mobile */
}

/* --- Updated Stats Container Styling --- */
.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  gap: 1rem;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1; /* Ensure stats are above any overlapping graphics */
}
.stat-box {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 1.5rem 1rem;
  border-radius: 8px; /* Correct border radius */
  text-align: center;
}
.stat-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-accent);
  line-height: 1;
}
.stat-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* --- Responsive adjustments --- */
@media (min-width: 1400px) {
  .tiger-graphic {
    display: block; /* Show the tiger on desktop */
  }
}

@media (max-width: 991px) {
  .the-posse-section .container {
    text-align: center;
  }
  .the-posse-intro .eyebrow,
  .the-posse-intro h2,
  .the-posse-intro p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet and up */
  }
}

@media (min-width: 992px) {
  .the-posse-intro {
    grid-template-columns: 1fr; /* Changed to single column on desktop */
    padding-right: 0; /* Remove the padding that was making space for tiger graphic */
    max-width: 900px; /* Constrain width for better readability */
    margin-left: auto;
    margin-right: auto;
  }

  /* Adjust tiger position for centered layout */
  .tiger-graphic {
    right: 0px; /* Adjust position to not interfere with centered content */
    top: 50px;
  }
}

/* ===================================
   Founder Section (Corrected)
   =================================== */

.founder-section {
  background-color: #832a64; /* Purplish-pink background */
  color: var(--color-white);
  padding: 5rem 1rem;
  padding-bottom: 0;
  text-align: center;
  overflow: hidden;
}

.founder-section .eyebrow {
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.founder-section h2 {
  color: var(--color-accent); /* Yellow text */
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  text-transform: uppercase;
  line-height: 0.9;
  font-weight: 900;
}

.founder-content-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  margin-top: -3rem; /* Adjusts vertical overlap of image */
  min-height: 600px; /* Ensure space for callouts */
}

/* CORRECTED IMAGE SIZE */
.founder-image {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
}

.callout {
  position: absolute;
  font-family: var(--font-script);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.2;
  z-index: 20;
  white-space: nowrap; /* Prevent text from wrapping */
}

.callout p {
  margin-bottom: 0px;
}

.callout-arrow {
  width: 50px;
  height: auto;
  display: block;
}

/* --- CORRECTED ARROW POSITIONING --- */
.callout-1 {
  top: 28%;
  left: 0;
  text-align: right;
  transform: rotate(-5deg);
}
.callout-1 .callout-arrow {
  transform: rotate(45deg);
  margin-left: 100%;
  margin-top: -10px;
}

.callout-2 {
  top: 25%;
  left: 30%;
  text-align: left;
  transform: rotate(5deg);
}
.callout-2 .callout-arrow {
  transform: scaleY(-1) rotate(1deg);
  margin-top: -10px;
}

.callout-3 {
  top: 38%;
  left: 15%;
  text-align: left;
  transform: rotate(-8deg);
}
.callout-3 .callout-arrow {
  transform: scaleY(-1) rotate(100deg);
  margin-left: 20px;
}

.callout-4 {
  top: 50%;
  left: 15%;
  text-align: right;
}
.callout-4 .callout-arrow {
  transform: rotate(10deg);
  margin-left: 100%;
  margin-top: -10px;
}

.callout-5 {
  top: 60%;
  left: 5%;
  text-align: right;
  transform: rotate(-3deg);
}
.callout-5 .callout-arrow {
  transform: rotate(15deg);
  margin-left: 100%;
  margin-top: -15px;
}

.callout-6 {
  top: 68%;
  left: 15%;
  text-align: left;
  transform: rotate(3deg);
}
.callout-6 .callout-arrow {
  transform: scaleX(-1) rotate(-155deg);
  margin-left: 20px;
  margin-top: -5px;
}

.callout-7 {
  bottom: 5%;
  left: 10%;
  text-align: right;
  transform: rotate(-4deg);
}
.callout-7 .callout-arrow {
  transform: rotate(70deg);
  margin-left: 100%;
  margin-top: -25px;
}

.callout-8 {
  top: 28%;
  right: 18%;
  text-align: right;
  transform: rotate(-3deg);
}
.callout-8 .callout-arrow {
  transform: scaleX(-1) rotate(-60deg);
  margin-top: -5px;
  margin-left: -40px;
}

.callout-9 {
  top: 40%;
  right: 0;
  text-align: left;
  transform: rotate(3deg);
}
.callout-9 .callout-arrow {
  transform: rotate(-15deg);
  margin-left: -25px;
}

.callout-10 {
  top: 58%;
  right: 10%;
  text-align: left;
}
.callout-10 .callout-arrow {
  transform: rotate(5deg);
  margin-left: -20px;
}

.callout-11 {
  top: 68%;
  right: 5%;
  text-align: right;
  transform: rotate(-5deg);
}
.callout-11 .callout-arrow {
  transform: scaleX(-1) rotate(20deg);
  margin-left: -45px;
}

.callout-12 {
  bottom: 15%;
  right: 20%;
  text-align: left;
  transform: rotate(3deg);
}
.callout-12 .callout-arrow {
  transform: rotate(60deg);
  margin-left: 10px;
}

.callout-13 {
  bottom: 2%;
  right: 10%;
  text-align: right;
  transform: rotate(-2deg);
}
.callout-13 .callout-arrow {
  transform: scaleX(-1) rotate(-45deg);
  margin-left: -40px;
  margin-top: -10px;
}

/* Hide callouts on mobile for a cleaner look */
@media (max-width: 768px) {
  .founder-content-wrapper {
    min-height: auto;
    margin-top: 1rem;
  }
  .callout {
    display: none;
  }
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials-section {
  position: relative;
  z-index: 100;
  /* This negative margin creates the overlap effect */
  margin-top: -120px;
  background-image: linear-gradient(0deg, #db4e39 0%, #c81e73 100%);
  color: var(--color-white);
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
}

/* The left column that stays fixed */
.testimonials-sticky-column {
  padding: 5rem 1rem;
  text-align: center;
}

.sticky-content .eyebrow {
  color: var(--color-accent);
}
.sticky-content .title-special {
  font-family: var(--font-special);
  color: var(--color-accent);
  font-size: clamp(4rem, 10vw, 6rem);
  line-height: 1;
}

/* The right column with scrolling content */
.testimonials-scroll-column {
  padding: 0 1rem 5rem 1rem;
}

.testimonial-card {
  margin-bottom: 4rem;
  max-width: 600px;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}

.testimonial-card h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  font-family: var(--font-body);
  font-size: 1.4rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.author-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 700;
}
.author-program {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* --- Desktop Sticky Scroll Effect --- */
@media (min-width: 992px) {
  .testimonials-wrapper {
    /* This line is now changed to make columns equal */
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem;
  }
  .testimonials-sticky-column {
    position: sticky; /* The magic! */
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .testimonials-scroll-column {
    padding: 8rem 0; /* Add padding to top and bottom for scroll room */
  }
}

/* ===================================
   Programs & Memberships Section
   =================================== */

.programs-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-accent);
  /* URL for the texture from the original site */
  background-image: url('https://static.showit.co/file/x9EcUX8QELy10j1uUUydvg/276362/copy_posse_yellow_background-01_large.jpg');
  background-blend-mode: multiply;
  background-size: cover;
  padding: 6rem 1rem;
  padding-bottom: 10rem;
  text-align: center;
}

/* White diagonal shape at the bottom */
.programs-section::after {
  content: '';
  position: absolute;
  background-color: var(--color-white);
  width: 150%;
  height: 250px;
  bottom: -150px;
  left: -10%;
  transform: rotate(4deg);
  z-index: 1;
}

.programs-section .container {
  position: relative;
  z-index: 2; /* Ensure content is above the diagonal shape */
}

.programs-section .eyebrow {
  color: var(--color-secondary);
}

.programs-section h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: clamp(3rem, 8vw, 5rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}

.programs-section .title-special {
  font-family: var(--font-special);
  color: var(--color-primary);
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 1;
  margin-top: -1rem; /* Overlap the heading above */
  margin-bottom: 2rem;
}

.programs-section .section-description {
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.programs-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.corner-gif {
  position: absolute;
  top: -40px;
  right: 20px;
  width: 250px;
  transform: rotate(3deg);
  display: none; /* Hidden on mobile */
  border-radius: 10px;
}

@media (min-width: 768px) {
  .corner-gif {
    display: block; /* Show GIF on larger screens */
  }
}

/* ===================================
   Freebies Section
   =================================== */
.freebies-section {
  padding: 6rem 0;
  background-color: var(--color-white);
}

.freebies-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.freebies-section .section-header .title-special {
  font-family: var(--font-special);
  color: var(--color-primary);
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 1;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-pink {
  background-color: var(--color-primary);
}
.btn-pink:hover {
  background-color: #a51860;
}

.freebie-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.freebie-item:last-child {
  border-bottom: none;
}

.freebie-cover {
  width: 100px;
  height: auto;
  border-radius: 4px;
}

.freebie-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.freebie-text p {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .freebie-item {
    grid-template-columns: 1fr; /* Stack everything vertically */
    text-align: center;
    gap: 1rem;
  }
  .freebie-cover {
    margin: 0 auto; /* Center the image */
  }
  .freebies-section .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================
   YouTube Section
   =================================== */

.youtube-section {
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 6rem 0;
  overflow: hidden;
}

.youtube-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
  position: relative;
}

.youtube-subheading {
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 500;
}

.youtube-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-top: 1rem;
}

/* --- Decorative Graphics --- */
.youtube-tiger-graphic {
  position: absolute;
  top: -20px;
  left: -50px;
  width: 250px;
  transform: rotate(11deg);
  display: none; /* Hidden on mobile */
}

.youtube-bolt-graphic {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
  width: 60px;
}

.youtube-arrow-graphic {
  position: absolute;
  width: 100px;
  bottom: -70px;
  right: 40px;
  transform: rotate(248deg) scaleX(1);
  display: none; /* Hidden on mobile */
}

/* --- Episode List --- */
.episode-list-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.episode-list-wrapper .eyebrow {
  color: var(--color-accent);
  text-align: left;
  margin-bottom: 1rem;
}

.episode-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(246, 222, 65, 0.5); /* Semi-transparent yellow */
  text-decoration: none;
  color: var(--color-white);
  transition: background-color 0.2s;
}

.episode-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.episode-number {
  color: var(--color-accent);
  font-weight: 500;
}

.episode-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-accent);
  text-align: left;
}

.play-button {
  width: 50px;
  height: 50px;
  background-color: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-button svg {
  width: 28px;
  height: 28px;
  margin-left: 4px; /* Optically center the play icon */
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
  .youtube-tiger-graphic,
  .youtube-arrow-graphic {
    display: block;
  }
}

@media (max-width: 576px) {
  .episode-item {
    grid-template-columns: 1fr auto; /* 2 columns */
    grid-template-areas:
      'number button'
      'title  button';
    gap: 0.5rem 1rem;
  }
  .episode-number {
    grid-area: number;
  }
  .episode-title {
    grid-area: title;
  }
  .play-button {
    grid-area: button;
  }
}

/* ===================================
   Hire Section
   =================================== */

.hire-section {
  position: relative;
  background-color: var(--color-accent);
  /* URL for the texture from the original site */
  background-image: url('https://static.showit.co/file/x9EcUX8QELy10j1uUUydvg/276362/copy_posse_yellow_background-01_large.jpg');
  background-blend-mode: multiply;
  background-size: cover;
  padding: 6rem 1rem 0; /* No bottom padding to let the image sit flush */
  text-align: center;
  overflow: hidden;
}

.hire-section h2 {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  text-transform: uppercase;
  font-weight: 700;
}

.hire-section h3 {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  margin: 1.5rem 0;
}

.hire-section p {
  color: var(--color-secondary);
  font-size: 1.4rem;
  max-width: 550px;
  margin: 0 auto 2.5rem auto;
}

.hire-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hire-image {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto 0 auto;
  display: block;
}

/* ===================================
   Newsletter Section
   =================================== */

.newsletter-section {
  position: relative;
  /* Gradient from original design */
  background-image: linear-gradient(180deg, #832a64 0%, #025a4e 100%);
  color: var(--color-white);
  padding: 7rem 1rem;
  overflow: hidden;
}

.newsletter-section .container {
  position: relative;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* Keep content above decorative elements if they overlap */
}

.newsletter-section h2 {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.newsletter-section h3 {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.newsletter-section p {
  font-size: 1.4rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
}

/* --- Form Styling --- */
.newsletter-form {
  display: grid;
  gap: 1rem;
}

.newsletter-form input,
.newsletter-form select {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}

/* Style for the placeholder text in the select dropdown */
.newsletter-form select:invalid {
  color: #6c757d;
}

.btn-yellow {
  background-color: var(--color-accent);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.1rem;
}
.btn-yellow:hover {
  background-color: #e0ca3c;
}

/* --- Floating Testimonial Callouts --- */
.testimonial-callout {
  position: absolute;
  font-family: var(--font-script);
  font-size: 1.25rem;
  width: 250px;
  display: none; /* Hidden on mobile by default */
}
.testimonial-callout img {
  width: 30px;
  margin: 0 auto 0.5rem auto;
}

.callout-left {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
}
.callout-right {
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
}

/* --- Responsive Adjustments --- */
@media (min-width: 1200px) {
  .testimonial-callout {
    display: block; /* Show callouts on large screens */
  }
}

/* ===================================
   Main Footer Section
   =================================== */

.main-footer {
  background-color: #fdfaf8; /* Light off-white background */
  padding: 4rem 1rem;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr; /* Stack on mobile */
  gap: 3rem;
  align-items: center;
}

/* --- Column 1: Image --- */
.footer-image-col .image-wrapper {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}
.footer-founder-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.footer-logo-overlay {
  position: absolute;
  top: -10px;
  left: -20px;
  width: 120px;
  transform: rotate(-15deg);
}

/* --- Column 2: About --- */
.footer-about-col h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer-about-col p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.7;
}

/* --- Column 3: Navigation --- */
.footer-nav-col .title-navigate {
  font-family: var(--font-special);
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-weight: normal;
}
.footer-nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;
  margin-bottom: 2rem;
}
.footer-nav-links a {
  color: var(--color-text);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.footer-nav-links a:hover {
  color: var(--color-primary);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex; /* Use flexbox to center the icon */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1); /* Add a subtle hover effect */
}

/* Style the SVG icon itself */
.social-icon svg {
  width: 50%; /* Make the icon a percentage of its container */
  height: 50%;
}
.social-icon svg path {
  fill: var(--color-white); /* Color the icon symbol white */
}

/* Background colors */
.icon-pink {
  background-color: #c81e73;
}
.icon-purple {
  background-color: #832a64;
}
.icon-green {
  background-color: #025a4e;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .footer-col {
    text-align: center;
  }
  .footer-nav-links,
  .social-icons {
    justify-content: center;
  }
  .footer-nav-links {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1.5fr 1.3fr; /* Uneven columns like the design */
    gap: 2rem;
  }
}

/* ===================================
   Social Media Ticker Section
   =================================== */

.social-ticker-section {
  width: 100%;
  overflow: hidden; /* This is crucial to hide the scrolling content */
  padding: 2rem 0;
  background: white;
}

.ticker-wrapper {
  display: flex;
  width: fit-content; /* Let the wrapper be as wide as its content */
}

.ticker-content {
  display: flex; /* Lay out all items in a single row */
  flex-shrink: 0;
  /* The animation that creates the infinite scroll */
  animation: scroll-ticker 60s linear infinite;
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Move the content to the left by 50% of its width.
           Since the content is duplicated, this creates a seamless loop. */
    transform: translateX(-50%);
  }
}

.ticker-item {
  height: 350px; /* Adjust height as needed */
  width: auto;
  margin: 0 8px; /* Space between items */
}

.ticker-item img,
.ticker-item video {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* ===================================
   Small Footer Bar
   =================================== */

.small-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 1.5rem;
}

.small-footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allows items to wrap on small screens */
  gap: 0.5rem 1.5rem; /* Row and column gap */
}

.small-footer span,
.small-footer a {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.small-footer a:hover {
  text-decoration: underline;
}

/*===========================================================
=============================================================
=============================================================/*

/* ===================================
   HIRE PAGE: Header Section
   =================================== */
.hire-header {
  padding: 8rem 1rem;
  background-color: #fdfaf8;
  background-image: url('https://static.showit.co/file/ypEMze-CIOVAUn61i7J3Xg/276362/raspberry.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--color-white);
}

.hire-header .eyebrow {
  color: var(--color-white);
}

.hire-header h1 {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-size: clamp(4rem, 12vw, 8rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 0.9;
}

.hire-header h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 500;
  margin: 2rem auto;
  max-width: 550px;
}

.hire-header p {
  max-width: 550px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.4rem;
}

.btn-yellow {
  background-color: var(--color-accent);
  color: var(--color-text);
}
.btn-yellow:hover {
  background-color: #e0ca3c;
}

/* ===================================
   HIRE PAGE: Introduction Section
   =================================== */
.introduction-section {
  padding: 6rem 0;
  padding-bottom: 0;
  background-color: var(--color-white);
}
.introduction-section .two-column-layout {
  gap: 4rem;
}
.introduction-section .column-text h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
}
.introduction-section .column-text h3 {
  font-size: 1.5rem;
  font-style: italic;
  margin-top: 2rem;
}
.introduction-section .column-media img {
  border-radius: 8px;
}

/* ===================================
   HIRE PAGE: About The Posse Section
   =================================== */
.about-posse-section {
  padding: 6rem 1rem;
  background-image: linear-gradient(0deg, #c81e73 0%, #db4e57 100%);
  color: var(--color-white);
}
.about-posse-section .two-column-layout {
  gap: 4rem;
  align-items: center;
}
.about-posse-section .title-special {
  color: var(--color-accent);
  font-size: clamp(4rem, 10vw, 6rem);
  margin-bottom: 30px;
}
.about-posse-section p {
  font-size: 1.4rem;
}
.collage-container {
  position: relative;
  min-height: 450px; /* Give container height for absolute positioning */
}
.collage-container img {
  position: absolute;
  border: 10px solid white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.collage-img-1 {
  width: 70%;
  top: 0;
  left: 0;
  transform: rotate(4deg);
  z-index: 2;
}
.collage-img-2 {
  width: 60%;
  bottom: 0;
  right: 0;
  transform: rotate(-3deg);
  z-index: 1;
}

@media (max-width: 768px) {
  .collage-container {
    min-height: 300px;
    margin-top: 2rem;
  }
}

/* ===================================
   HIRE PAGE: Trained Writer Section (Corrected Alignment & Size)
   =================================== */

.trained-writer-section {
  padding: 4rem 1rem; /* REDUCED HEIGHT: Was 6rem */
  background-color: var(--color-white);
}

.trained-writer-section .two-column-layout {
  gap: 4rem;
  align-items: start;
}

/* --- Text Column Styling --- */
.trained-writer-section .column-text h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--color-secondary);
}

.trained-writer-section .column-text p {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 550px;
  color: #3d3d3d;
}

.trained-writer-section .column-text p strong {
  color: var(--color-secondary);
  font-weight: 700;
}

.trained-writer-section .btn {
  margin-top: 1rem;
}

/* --- Image Grid Column Styling --- */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;

  /* KEY FIX 1: Set a max-width to constrain the grid and make images smaller */
  max-width: 280px;

  /* KEY FIX 2: Center the grid horizontally and handle vertical alignment */
  margin: 0 auto 0 auto;
}

.image-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .trained-writer-section .two-column-layout {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
  }
  .image-grid {
    /* On tablet, let the grid take more space */
    max-width: none;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem; /* Reset margin for mobile layout */
  }
}

@media (min-width: 992px) {
  .trained-writer-section .two-column-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 576px) {
  .image-grid {
    grid-template-columns: repeat(
      3,
      1fr
    ); /* 3 images per row on small mobile */
  }
}

/* ===================================
   HIRE PAGE: Services Section
   =================================== */

.services-section {
  position: relative;
  padding: 6rem 1rem;
  background-color: var(--color-hot-red);
  /* Texture from the original site */
  background-image: url('https://static.showit.co/file/NZ6KDYPbc6MGyeTyNko80g/276362/orange_red.jpg');
  background-blend-mode: multiply;
  background-size: cover;
  color: var(--color-white);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  position: relative;
}

.services-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-white);
}

.services-header img {
  position: absolute;
  width: 60px;
  bottom: -30px;
  right: -10px;
  transform: rotate(218deg) scaleX(1);
  display: none; /* Hidden on mobile */
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default to 1 column */
  gap: 1rem;
}

.service-card {
  background-color: var(--color-white);
  color: var(--color-text);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  position: relative; /* For the lightning bolt */
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 0;
}

.service-card .lightning-bolt {
  position: absolute;
  top: -50px;
  right: -35px;
  width: 100px;
  transform: rotate(15deg);
}

/* --- Responsive Adjustments --- */
@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}
@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
  }
  .services-header img {
    display: block; /* Show the arrow on desktop */
  }
}

/* ===================================
   HIRE PAGE: Detailed Testimonials Section (Corrected Layout)
   =================================== */

.testimonials-detailed-section {
  padding: 6rem 1rem;
  background-color: var(--color-primary);
}

.testimonials-detailed-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.testimonials-detailed-section .section-header .title-special {
  font-family: var(--font-special);
  color: var(--color-white);
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 1;
}

.testimonials-detailed-section .btn-yellow {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.testimonials-list {
  display: grid;
  gap: 3rem; /* Space between each white card */
}

/* THIS IS THE KEY FIX: The card itself is the grid container */
.testimonial-detailed-card {
  display: grid;
  grid-template-columns: 1fr; /* Stack on mobile by default */
  gap: 2rem;
  align-items: center;
  background-color: var(--color-white);
  color: var(--color-text);
  padding: 2.5rem;
  border-radius: 12px;
}

.testimonial-detailed-card h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
}

.testimonial-detailed-card p {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.author-details .author-name {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.author-details .author-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6c757d;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* --- Desktop Alternating Layout --- */
@media (min-width: 992px) {
  .testimonial-detailed-card {
    grid-template-columns: 1.5fr 1fr; /* Text on left (wider), image on right */
    gap: 3rem;
  }

  /* This reverses the layout for alternating cards */
  .testimonial-detailed-card.layout-reversed {
    grid-template-columns: 1fr 1.5fr; /* Image on left, text on right */
  }

  /* In the reversed layout, we tell the image to occupy the first column spot */
  .testimonial-detailed-card.layout-reversed .testimonial-image {
    grid-column: 1;
    grid-row: 1;
  }
  .testimonial-detailed-card.layout-reversed .testimonial-text {
    grid-column: 2;
    grid-row: 1;
  }
}

/* ===================================
   HIRE PAGE: Note From Alex Section (Corrected)
   =================================== */

.note-from-alex-section {
  background-color: var(--color-primary);
  /* KEY FIX 1: Bottom padding is removed from the overall section */
  padding: 6rem 1rem 0;
  color: var(--color-white);
  overflow: hidden;
}

.note-from-alex-section .two-column-layout {
  /* KEY FIX 2: Align both columns to the bottom of the section */
  align-items: flex-end;
  gap: 4rem;
}

.note-from-alex-section .column-text {
  /* KEY FIX 3: Add padding ONLY to the bottom of the text column */
  padding-bottom: 4rem;
}

.note-from-alex-section .column-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.note-from-alex-section .column-text p {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 550px;
  opacity: 0.95;
}

.note-from-alex-section .column-text p strong {
  font-weight: 700;
  opacity: 1;
}

/* --- Signature Styling --- */
.signature {
  margin-top: 2rem;
}

.signature .signature-name {
  display: block;
  font-family: var(--font-special);
  color: var(--color-accent);
  font-size: 3rem;
  line-height: 1;
}

.signature .signature-title {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .note-from-alex-section .two-column-layout {
    grid-template-columns: 1fr; /* Stack on mobile */
    align-items: center; /* Revert to center alignment when stacked */
  }
  .note-from-alex-section .column-image {
    order: -1; /* Image on top on mobile */
    max-width: 400px;
    margin: 0 auto 3rem auto;
  }
  .note-from-alex-section .column-text {
    text-align: center;
    padding-bottom: 4rem; /* Keep the padding for mobile */
  }
  .note-from-alex-section .column-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===================================
   HIRE PAGE: Step-by-Step Section (Corrected)
   =================================== */

.step-by-step-section {
  background-color: var(--color-accent);
  padding: 6rem 1rem;
  text-align: center;
}

.step-by-step-section .section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-secondary);
}
.step-by-step-section .section-header h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-secondary);
  max-width: 600px;
  margin: 1.5rem auto 0 auto;
}
.step-by-step-section .section-header h3 b {
  font-weight: 700;
}

.steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
  margin: 8rem 0; /* Increased top/bottom margin */
  max-width: 800px; /* Constrain the width for proper alignment */
  margin-left: auto;
  margin-right: auto;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr; /* Stacked on mobile */
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
.step-image {
  order: -1;
}
.step-image img {
  max-width: 200px;
  margin: 0 auto;
}
.step-text .eyebrow {
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 700;
}
.step-text h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}
.step-text p {
  color: var(--color-secondary);
  font-size: 1.3rem;
  margin: 0 auto;
}

/* --- Decorative Arrows --- */
.step-arrow {
  position: absolute;
  width: 80px;
  display: none;
}
.arrow-1 {
  bottom: -6.5rem;
  left: 40%;
  transform: rotate(86deg);
}
.arrow-2 {
  bottom: -6.5rem;
  right: 40%;
  transform: rotate(-80deg) scaleX(-1);
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}
.final-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* --- Responsive Adjustments --- */
@media (min-width: 992px) {
  .step-card {
    /* KEY FIX 1: Define specific column widths for balance */
    grid-template-columns: 250px 1fr;
    text-align: left;
    gap: 3rem;
  }
  .step-card.layout-reversed {
    /* KEY FIX 2: Reverse the column order for the alternating layout */
    grid-template-columns: 1fr 250px;
  }
  .step-card.layout-reversed .step-image {
    order: 2; /* Move image to the second column */
  }
  .step-card.layout-reversed .step-text {
    text-align: right; /* Align text right in the reversed card */
  }
  .step-text p {
    margin: 0; /* Remove auto margin to allow text alignment */
  }
  .step-image {
    order: initial;
  }
  .step-arrow {
    display: block; /* Show arrows on desktop */
  }
}

/* ===================================
   FREEBIES PAGE: Header Section
   =================================== */
.freebies-header-section {
  padding: 6rem 1rem;
  background-image: linear-gradient(0deg, #db4e57 0%, #c81e73 100%);
  text-align: center;
  color: var(--color-white);
}

.freebies-header-section .title-special {
  font-family: var(--font-special);
  color: var(--color-accent);
  font-size: clamp(4rem, 12vw, 7.5rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.freebies-header-section p {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

/* ===================================
   FREEBIES PAGE STYLES
   =================================== */

/* --- Page-Specific Body Class --- */
/* This makes the header static ONLY on the freebies page */
body.page-freebies .main-header {
  position: static;
  background-color: #c81e73;
}
body.page-freebies .main-header .nav-logo img {
  /* Filter to make the black logo yellow */
  filter: brightness(0) saturate(100%) invert(88%) sepia(35%) saturate(865%)
    hue-rotate(354deg) brightness(101%) contrast(95%);
}

/* --- Freebies Page Title Section --- */
.page-title-section {
  text-align: center;
  padding: 8rem 1rem;
  position: relative;
  background-image: linear-gradient(0deg, #db4e57 0%, #c81e73 100%);
  color: white;
}
.page-title-section .title-special {
  font-family: var(--font-special);
  color: var(--color-accent);
  font-size: clamp(4rem, 12vw, 7.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.page-title-section p {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}
.download-icon {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #c81e73;
  border-radius: 50%;
  padding: 12px;
}

/* --- Freebies List Section --- */
.freebies-list-section {
  padding: 6rem 0 4rem 0; /* Add top padding to account for download icon */
  background-color: var(--color-white);
}
.freebie-card {
  display: grid;
  grid-template-columns: 1fr; /* Stacked on mobile */
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid #eee;
}
.freebie-card:last-of-type {
  border-bottom: none;
}
.freebie-text .eyebrow {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-secondary);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.freebie-text h2 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.freebie-text h2 i {
  color: var(--color-primary);
}
.freebie-text p {
  color: #555;
  max-width: 500px;
  margin-bottom: 0;
}
.freebie-media {
  text-align: center;
}
.freebie-media img {
  max-width: 200px;
  margin: 0 auto 1.5rem auto;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.freebie-media .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-secondary);
  color: white;
}
.freebie-media .btn:hover {
  background-color: #013d34;
}

/* --- Desktop Layout --- */
@media (min-width: 992px) {
  .freebie-card {
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
  }
  .freebie-text {
    text-align: left;
  }
}

/* ===================================
   PROGRAMS PAGE STYLES
   =================================== */

/* --- Page-Specific Header --- */
body.page-programs .main-header {
  background-color: transparent;
  position: absolute; /* Make it float over the hero */
}
body.page-programs .main-header .nav-menu a {
  color: var(--color-white);
}

/* --- Hero Section --- */
.programs-hero {
  padding: 12rem 1rem 12rem;
  background-color: var(--color-secondary);
  background-image: url('https://static.showit.co/file/Spn0JjfqOg4d6RF5buetQA/276362/green.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.programs-hero .eyebrow {
  color: var(--color-white);
}
.programs-hero h1 {
  font-family: var(--font-heading);
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
}
.programs-hero .title-special {
  font-family: var(--font-special);
  display: block;
  font-size: clamp(5rem, 14vw, 10rem);
}
.programs-hero .description {
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 700px;
  margin: 2rem auto 0;
}
.diagonal-bar {
  position: absolute;
  bottom: -80px;
  left: -10%;
  width: 120%;
  height: 150px;
  background-color: var(--color-primary);
  transform: rotate(3deg);
}

/* --- Quick Courses Banner --- */
.quick-courses-banner {
  padding: 5rem 1rem;
  padding-top: 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  position: relative;
}
.quick-courses-banner .eyebrow {
  color: white;
}
.quick-courses-banner h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  max-width: 600px;
  margin: 1rem auto 0;
}
.quick-courses-banner .bolt-graphic {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(-15deg);
  width: 80px;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.15));
}

.programs-list-section {
  padding: 2rem 0 6rem 0; /* No top padding */
  background-color: var(--color-white);
}

/* --- Style for hiding filtered program cards --- */
.program-card.hidden {
  display: none;
}

/* --- Tab Navigation --- */
.programs-nav-wrapper {
  padding: 2rem 0;
  margin-bottom: 4rem;
}
.programs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
}
.program-nav-item {
  padding: 10px 20px;
  background-color: black;
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}
.program-nav-item:hover,
.program-nav-item.active {
  background-color: var(--color-accent);
  color: var(--color-text);
  text-decoration: none;
}
.nav-arrow {
  position: absolute;
  width: 60px;
  top: 100%;
  left: 22%;
  transform: rotate(112deg);
  display: none; /* Hidden on mobile */
}

/* --- Program Card Layout --- */
.program-card {
  display: grid;
  grid-template-columns: 1fr; /* Stack on mobile */
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid #eee;
}
.program-card:last-of-type {
  border-bottom: none;
}
.program-image {
  text-align: center;
}
.program-image img {
  max-width: 450px;
  width: 100%;
}
.program-text {
  text-align: center;
}
.program-text .eyebrow {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
}
.program-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: 1rem;
}
.program-text h2 i {
  color: var(--color-primary);
}
.program-text p {
  color: #555;
  max-width: 450px;
  margin: 0 auto 2rem;
}
.program-text .btn {
  background-color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.program-text .btn:hover {
  background-color: #a51860;
}

/* --- Desktop Layout Adjustments --- */
@media (min-width: 992px) {
  .program-card {
    /* KEY FIX: Text column is wider than image column */
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
  }
  .program-text {
    text-align: left;
  }
  .program-text p {
    margin-left: 0;
  }
  /* The alternating layout works by simply reversing the order */
  .program-card.layout-reversed .program-image {
    order: -1;
  }
  .nav-arrow {
    display: block;
  }
}

/* ===================================
   PROGRAMS PAGE: Star Offers Intro
   =================================== */
.star-offers-intro {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 5rem 1rem;
}
.star-offers-intro .eyebrow {
  color: var(--color-accent);
}
.star-offers-intro h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 1rem auto;
  max-width: 500px;
}
.icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 2rem auto 0;
}
.rotating-text-icon,
.arrow-down-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.arrow-down-icon {
  color: white;
  padding: 25%; /* Scale down the icon inside the circle */
  rotate: 90deg;
}
#rotating-text {
  animation: rotation 30s infinite linear;
}
#rotating-text textPath {
  font-size: 48px;
  font-family: 'Afacad', sans-serif;
  font-weight: bold;
  letter-spacing: 16px;
  text-transform: uppercase;
  fill: #fff;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* ===================================
   PROGRAMS PAGE: Detailed Program Sections
   =================================== */
.program-details-section {
  padding: 6rem 1rem;
}
.launch-pad-section {
  background-color: var(--color-primary);
}
/* Add background colors for other sections if needed */

.program-header {
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}
.program-header .eyebrow {
  color: var(--color-accent);
  background-color: var(--color-secondary);
  padding: 8px 15px;
  border-radius: 5px;
  display: inline-block;
}
.program-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7rem);
  margin: 1rem 0;
}
.program-header .program-subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.program-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.program-image {
  text-align: center;
}
.program-image img {
  max-width: 450px;
  width: 100%;
}
.program-description {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  color: var(--color-text);
}
.program-description p {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.program-description a.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .program-content {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

/* ===================================
   OTI PAGE STYLES (Corrected)
   =================================== */

body.page-oti {
  background-color: #242424; /* Fallback background */
}

/* --- OTI Header --- */
.page-oti .main-header {
  background-color: #1a1a1a; /* Solid dark background for header */
  position: static;
}

/* --- OTI Hero Section --- */
.oti-hero-section {
  background-color: #242424;
  background-image: url('https://join.copyposse.com/wp-content/uploads/2021/11/oti_banner_bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 4rem 1rem;
}
.oti-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}
.oti-hero-text {
  text-align: center;
  order: 2; /* Text below on mobile */
}
.oti-logo {
  max-width: 250px;
  margin: 0 auto 2rem;
}
.oti-hero-section h1,
.oti-hero-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.oti-hero-section .btn-yellow {
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  text-transform: uppercase;
  background-color: #f8d431;
}
.oti-hero-section .btn-yellow:hover {
  background-color: #e0be2c;
}
.price-info {
  font-size: 0.9rem !important;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 1rem !important;
  opacity: 0.9;
}
.oti-hero-media {
  order: 1; /* Video on top on mobile */
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- "Join Today" Price Styling --- */
.oti-join-today {
  text-align: center;
  color: var(--color-white);
}
.oti-join-today p {
  margin: 0;
  font-weight: 500;
}
.price-highlight {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0.5rem 0 !important;
}
.price-highlight del {
  font-size: 0.6em;
  opacity: 0.8;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.current-price {
  color: #f8d431; /* Yellow */
}
.payment-plan {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.9;
}

/* --- Desktop Layout --- */
@media (min-width: 992px) {
  .oti-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .oti-hero-text {
    text-align: left;
    order: 1;
  }
  .oti-hero-media {
    order: 2;
  }
  .oti-logo,
  .oti-hero-section h1,
  .oti-hero-section p {
    margin-left: 0;
  }
}

/* ===================================
   OTI PAGE: "What's Inside" Section
   =================================== */

.page-oti .oti-whats-inside {
  background-color: var(--color-white);
  padding: 6rem 1rem;
  padding-bottom: 0;
}

.page-oti .oti-whats-inside .two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}

.page-oti .oti-whats-inside h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.page-oti .oti-whats-inside p {
  color: #444;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

.page-oti .oti-whats-inside p strong {
  color: var(--color-text);
  font-weight: 700;
}

@media (min-width: 992px) {
  .page-oti .oti-whats-inside .two-column-layout {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .page-oti .oti-whats-inside .column-image {
    order: 2; /* Image on the right */
  }

  .page-oti .oti-whats-inside .column-text {
    order: 1; /* Text on the left */
  }
}

/* ===================================
   OTI PAGE: "When Social Goes Sideways" Section
   =================================== */

.page-oti .oti-social-sideways {
  background: #000000
    url('https://join.copyposse.com/wp-content/uploads/2021/11/oti_gameon_bg-2.jpg')
    no-repeat center right;
  background-size: cover;
  padding: 6rem 1rem;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

/* Optional overlay for better text readability */
.page-oti .oti-social-sideways::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.page-oti .oti-social-sideways .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-oti .oti-social-sideways .two-column-layout {
  display: block; /* Change from grid to block since we're not using columns */
}

.page-oti .oti-social-sideways h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: 2.5rem;
  line-height: 1.2;
  text-align: left; /* Ensure left alignment */
}

.page-oti .oti-social-sideways .column-text {
  text-align: left; /* Ensure all text is left aligned */
}

.page-oti .oti-social-sideways .column-text p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left; /* Left align paragraphs */
}

.page-oti .oti-social-sideways .column-text p:last-child {
  margin-bottom: 0;
}

/* Hide the image column since the background image contains the person */
.page-oti .oti-social-sideways .column-image {
  display: none;
}

/* --- Desktop Layout --- */
@media (min-width: 992px) {
  .page-oti .oti-social-sideways .two-column-layout {
    max-width: 60%; /* Text takes about 60% of the width */
    margin-left: 0; /* Align to left edge of container */
    margin-right: auto; /* Push to left side */
  }
}

/* --- Large Desktop Layout --- */
@media (min-width: 1200px) {
  .page-oti .oti-social-sideways .two-column-layout {
    max-width: 50%; /* Text takes even less width on larger screens */
  }
}

/* Email Marketing Is Not Dead Section Styles */
.us_custom_email_marketing_not_dead {
  background: #f8f8f8 url(images/email-pattern-bg.jpg) no-repeat center / cover !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 767px) {
  .us_custom_email_marketing_not_dead {
    background: #f8f8f8 url(images/email-pattern-bg.jpg) no-repeat left top /
      cover !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

/* Default desktop navigation */
.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

/* Hide menu on mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    z-index: 1000;
  }

  /* When active, show menu */
  .nav-menu.active {
    display: flex;
  }

  /* Make the toggle visible */
  .menu-toggle-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }
}

/* ===================================
   New Styles for Home Page Updates
   =================================== */

/* Larger font for hero subtitle */
.hero-subtitle-large {
  font-size: 1.5rem !important;
  line-height: 1.4;
  transition: opacity 0.5s ease-in-out;
}

/* Larger text utility class */
.large-text {
  font-size: 1.4rem !important;
  line-height: 1.6;
}

/* Center alignment for appointment machine section */
.the-posse-section.text-center .intro-text {
  text-align: center;
}

.the-posse-section.text-center .intro-text h2,
.the-posse-section.text-center .intro-text p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Partners and Integrations section */
.partners-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Larger button styling */
.large-button {
  font-size: 1.4rem;
  padding: 15px 30px;
}

/* Mobile responsiveness adjustments */
@media (max-width: 768px) {
  .hero-subtitle-large {
    font-size: 1.2rem !important;
  }

  .large-text {
    font-size: 1.2rem !important;
  }

  .large-button {
    font-size: 1.2rem;
    padding: 12px 24px;
  }
}

/* ===================================
   Fancy Video Section - Fixed Styles
   =================================== */

.fancy-video-section {
    background: #0a0a0a;
    padding: 4rem 0;
    color: white;
    text-align: center;
}

/* Video Header */
.video-header {
    margin-bottom: 3rem;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Title */
.video-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #f6de41; /* Your yellow accent color */
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Subtitle */
.video-subtitle {
    font-family: 'Afacad', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: white;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.video-subtitle i {
    color: #f6de41; /* Your yellow accent color */
    font-style: italic;
    font-weight: 600;
}

/* CTA Button Container */
.cta-button-container {
    margin-bottom: 3rem;
}

/* Simplified Button */
.btn-enroll-now {
    display: inline-block;
    background: linear-gradient(45deg, #f6de41, #ffeb3b);
    color: #025a4e; /* Your dark green color */
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-family: 'Afacad', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(246, 222, 65, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-enroll-now:hover {
    background: linear-gradient(45deg, #f8e55a, #fff176);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(246, 222, 65, 0.4);
    text-decoration: none;
    color: #025a4e;
}

/* Video Container */
.video-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Video CTA */
.video-cta {
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    opacity: 0.9;
    font-family: 'Afacad', sans-serif;
}

.cta-text strong {
    color: #f6de41;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fancy-video-section {
        padding: 3rem 0;
    }
    
    .video-main-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .video-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.5rem);
        line-height: 1.3;
    }
    
    .btn-enroll-now {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .header-content,
    .video-container {
        padding: 0 15px;
    }
}

/* ===================================
   Quiz CTA Section Styles - Minimal
   =================================== */

.quiz-cta-section {
    background: var(--color-secondary);
    padding: 4rem 0;
    color: var(--color-white);
    text-align: center;
}

.quiz-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Title */
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--color-accent);
    line-height: 1.2;
}

/* Description */
.cta-description {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Benefits */
.cta-benefits {
    margin: 0 auto 2.5rem auto;
    max-width: 400px;
}

.benefit-item {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

/* CTA Button */
.btn-cta-quiz {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-secondary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.btn-cta-quiz:hover {
    background: #f8e55a;
    text-decoration: none;
}

/* Note */
.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quiz-cta-section {
        padding: 3rem 0;
    }
    
    .btn-cta-quiz {
        padding: 0.9rem 1.8rem;
        font-size: 1.1rem;
    }
}