/* ===== ROOT & VARIABLES ===== */
html {
  font-size: 16px;
}

:root {
  --color-primary: #db7150;
  --color-secondary: #00c6b7;
  --color-dark: #2b2b2b;
  --color-gray: #707070;
  --color-white: #ffffff;
  --font-family: "Montserrat", sans-serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.875rem;
  --spacing-lg: 3.75rem;
  --spacing-xl: 5rem;
  --spacing-2xl: 6.25rem;
  --spacing-2xxl: 12.5rem;
  --border-radius: 1.25rem;
  --border-radius-sm: 0.75rem;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  font-family: var(--font-family);
  color: var(--color-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .cta-btn:hover {
    transform: none;
    box-shadow: none;
  }

  .link-btn:hover {
    gap: var(--spacing-xs);
  }

  .graphic-card:nth-child(2),
  .graphic-card:nth-child(3) {
    transform: translateY(0);
  }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 0.75rem 1.25rem;
  font-size: 1.125rem;
  height: 2.875rem;
}

.announcement-bar span {
  font-weight: 500;
}

.underlined {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 0.1875rem solid var(--color-secondary);
  padding-bottom: 0.125rem;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.188rem 8.25rem;
  background: var(--color-white);
  position: relative;
}

.logo img {
  width: 12rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 6.25rem;
  position: relative;
}

.nav-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: var(--font-family);
  letter-spacing: 0.113rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.nav-item-wrapper {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1.875rem);
  right: 0;
  background: var(--color-secondary);
  border-radius: 2.5rem;
  padding: 2.5rem 3.125rem;
  width: 38.438rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.625rem);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
}

.dropdown-content,
.dropdown-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-item,
.dropdown-items a {
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  padding: var(--spacing-xs) 0;
  text-decoration: none;
  display: block;
}

.dropdown-item:hover,
.dropdown-items a:hover {
  opacity: 0.8;
}

@media (max-width: 1280px) {
  .dropdown-menu {
    top: calc(100% + 0.75rem);
    left: 50%;
    right: auto;
    width: 90vw;
    max-width: 38.438rem;
    padding: 2.5rem 2rem;
    border-radius: 2.5rem;
    transform: translateX(-50%) translateY(-0.625rem);
    transition: all 0.22s ease;
    z-index: 9999;
  }

  .dropdown-menu.active {
    transform: translateX(-50%) translateY(0);
  }

  .dropdown-header {
    justify-content: center;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
  }

  .dropdown-content,
  .dropdown-items {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
    justify-items: center;
  }

  .dropdown-item,
  .dropdown-items a {
    text-align: center;
    padding: 0.875rem 0;
    width: 100%;
    max-width: 26rem;
  }
}

/* ===== BUTTONS ===== */
.cta-btn {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 4.7rem;
  border-radius: 1.25rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1rem;
  letter-spacing: 0.081rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.cta-btn:hover {
  background: #c45f45;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(219, 113, 80, 0.3);
}

.badge {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 5rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

.badge-highlight {
  font-style: italic;
  font-weight: 900;
}

.link-btn {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-top: 1.25rem;
  transition: gap 0.3s ease;
}

.link-btn:hover {
  gap: 0.75rem;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-dark);
  max-width: 40.625rem;
}

.highlight {
  color: var(--color-secondary);
  font-style: italic;
  font-weight: 900;
  white-space: nowrap;
}

.subtitle {
  font-size: 1.125rem;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.accent {
  color: var(--color-primary);
  font-weight: 700;
  font-style: italic;
}

.mid-heading {
  font-weight: 600;
  margin-left: 2rem;
  white-space: nowrap;
  display: inline-block;
}

.text-block {
  margin-left: 5rem;
}

.hero-sub-headings {
  margin-left: 2rem;
}

/* ===== IMAGE CARD ===== */
.image-card {
  position: relative;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 1.25rem 1.25rem 0 var(--color-secondary);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 0 var(--spacing-lg) var(--spacing-xl);
  background: var(--color-white);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xxl);
  align-items: stretch;
  max-width: 90%;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  height: 100%;
}

.hero-left-text {
  width: 100%;
  flex-shrink: 0;
  margin-top: 10rem;
}

.hero-left-image {
  width: 100%;
  margin-top: var(--spacing-md);
  flex: 1;
  display: flex;
  align-items: stretch;
  margin-left: 5rem;
}

.hero-left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  height: 100%;
}

.hero-right-image-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: stretch;
}

.hero-right-image-bg {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  border-radius: 3.75rem;
  z-index: 1;
}

.hero-right-image {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  z-index: 2;
}

.hero-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-right-text {
  width: 100%;
  padding-top: var(--spacing-md);
  flex-shrink: 0;
}

.hero-right-text h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.hero-right-text .italic {
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--color-dark);
}

.hero-right-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  overflow: hidden;
  position: relative;
  max-width: 1920px;
  border-radius: 40px;
  margin: 0 3rem;
  background: var(--color-white);
}

.testimonials-container {
  background: #f8f8f8;
  width: 100%;
  margin: 0 auto;
  border-radius: 2.5rem;
  padding: 5rem 3.75rem 3.75rem;
}

.testimonials-header {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.0188rem;
}

.testimonials-header .highlight {
  color: var(--color-secondary);
  font-style: italic;
  font-weight: 700;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-left: 1.5rem;
}

.testimonials-grid {
  display: flex;
  gap: 3.125rem;
  margin-bottom: 2.5rem;
  transition: transform 0.4s ease-in-out;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
}

.stars {
  margin-bottom: 0.9375rem;
}

.star {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-right: 0.25rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.2;
  color: #2b2b2b;
  font-weight: 500;
  margin-bottom: 1.875rem;
  letter-spacing: 0;
}

.testimonial-text .coached {
  color: var(--color-secondary);
  font-weight: 700;
}

.author-info {
  margin-top: auto;
}

.author-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.3125rem;
}

.author-location {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  font-style: italic;
}

.testimonials-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
}

.nav-button {
  background-color: transparent;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
  padding: 0.375rem;
  transition: opacity 0.2s ease;
}

.nav-button:hover:not(:disabled) {
  opacity: 0.7;
}

.nav-button:disabled {
  color: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.nav-button svg {
  width: 1.375rem;
  height: 1.375rem;
  stroke-width: 2.5;
}

@media (min-width: 969px) {
  .testimonial-card {
    width: calc((100% - (2 * 3.125rem)) / 3);
  }
}

@media (max-width: 968px) {
  .testimonials-section {
    padding: 3.125rem 1.875rem;
  }

  .testimonials-container {
    padding: 3.125rem 1.875rem;
  }

  .testimonials-header {
    font-size: 1.875rem;
    margin-bottom: 2.5rem;
  }

  .testimonials-grid {
    gap: 2.5rem;
  }

  .slider-wrapper {
    margin-left: 0;
  }
}

/* Between 969px and 1280px: show 2 testimonial cards per row */
@media (min-width: 969px) and (max-width: 1280px) {
  .testimonials-grid {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    transition: transform 0.4s ease-in-out;
  }

  .testimonial-card {
    width: calc((100% - 1.25rem) / 2);
  }

  .slider-wrapper {
    margin-left: 1.5rem;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--color-white);
  padding: 6.25rem 3.75rem;
  position: relative;
  overflow: visible;
}

.services-decorative-bar {
  position: absolute;
  background: var(--color-secondary);
  z-index: 1;
}

.services-decorative-bar-top {
  top: 4.5rem;
  left: 0;
  width: 84%;
  height: 5rem;
  border-radius: 0 3.125rem 3.125rem 0;
}

.services-decorative-bar-bottom {
  bottom: 4.5rem;
  right: 0;
  width: 84%;
  height: 5rem;
  border-radius: 3.125rem 0 0 3.125rem;
}

.services-wrapper {
  max-width: 87.5rem;
  margin: 0 auto;
  position: relative;
  background: var(--color-primary);
  border-radius: 3.125rem;
  display: grid;
  grid-template-areas: "badge header header" "badge nav nav" "badge card card";
  grid-template-columns: auto 1fr;
  gap: 0;
  padding: 5rem 0;
  z-index: 2;
}

.services-badge {
  grid-area: badge;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.625rem;
  text-transform: uppercase;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-header {
  grid-area: header;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  padding: 0 3.75rem;
}

.services-header h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  line-height: 1.2;
}

.services-header .excellence {
  font-style: italic;
  font-weight: 900;
}

.services-header p {
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.services-nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 3.125rem;
  padding: 0 3.75rem;
  text-align: center;
}

.services-nav-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.services-nav button {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.25s ease;
  text-align: center;
  white-space: nowrap;
  position: relative;
}

.services-nav button:hover,
.services-nav button:focus {
  opacity: 0.7;
  outline: none;
}

.services-nav button:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
  opacity: 1;
}

.services-nav button.active {
  opacity: 1;
}

.services-nav button.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 0.1875rem;
  background: var(--color-secondary);
  border-radius: 0.09375rem;
}

.service-card-wrapper {
  grid-area: card;
  padding: 0 3.75rem;
  position: relative;
}

.service-card {
  background: var(--color-white);
  border-radius: 1.25rem;
  padding: 3.125rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
  align-items: center;
  position: relative;
  max-width: 87.5rem;
  margin: 0 auto;
  overflow: visible;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--color-dark);
  line-height: 1.2;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  margin-bottom: 1.875rem;
  font-weight: 500;
}

.service-content .highlight-service {
  color: var(--color-secondary);
  font-weight: 700;
}

.service-image {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 21.875rem;
  background: #e8e8e8;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== STEPS SECTION ===== */
.steps-section {
  padding: var(--spacing-2xl) var(--spacing-lg);
  background: #f8f8f8;
}

.steps-wrapper {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-xl);
  align-items: stretch;
}

.steps-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
}

.steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.steps-content h2 {
  font-size: 2.875rem;
  font-weight: 600;
  margin-bottom: 3.125rem;
  color: var(--color-dark);
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
  gap: 0;
}

.step {
  margin-left: var(--spacing-md);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  flex: 1;
}

.step-number {
  font-size: 4.375rem;
  font-weight: 800;
  color: var(--color-primary);
  font-style: italic;
  line-height: 1;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--color-dark);
}

.step p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-xl);
}

.footer-content {
  max-width: 87.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 12.5rem 1fr auto;
  gap: var(--spacing-xl);
  align-items: start;
}

.footer-top {
  display: none;
}

.footer-logo {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.footer-logo img {
  width: 6rem;
  height: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md) var(--spacing-lg);
  margin-top: 10px;
  list-style: none;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-cta {
  text-align: right;
}

.footer-cta .cta-btn {
  background: var(--color-white);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
  padding: 0.625rem 4.385rem;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.social-links a img {
  width: 2.125rem;
  height: 2.125rem;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.8;
}

.copyright {
  text-align: right;
  margin-top: 2.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
  }

  .hero-left-image,
  .hero-right-image-wrapper {
    margin-left: 0;
  }

  .steps-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .services-wrapper {
    grid-template-areas: "header" "nav" "card";
    grid-template-columns: 1fr;
  }

  .services-decorative-bar-top,
  .services-decorative-bar-bottom {
    height: 3.75rem;
  }

  .services-decorative-bar-top {
    width: 50%;
  }

  .services-decorative-bar-bottom {
    width: 50%;
  }

  .services-badge {
    display: none;
  }

  .social-media-badge {
    display: none;
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }

  .content-block.reverse {
    direction: ltr;
  }
}

@media (max-width: 1280px) {
  /* Header & Nav Mobile Adjustments */
  .announcement-bar {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    text-align: center;
    height: auto;
    line-height: 1.4;
  }

  .announcement-bar span {
    display: block;
  }

  header {
    padding: 2rem 1.25rem;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.625rem;
  }

  .logo img {
    height: 6.75rem;
    width: auto;
  }

  nav {
    flex-direction: column-reverse;
    gap: 1.25rem;
    align-items: stretch;
  }

  .nav-link {
    font-size: 0.813rem;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 0.625rem 4.2rem;
    font-size: 0.875rem;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-cta {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-cta .cta-btn {
    width: auto;
    display: inline-block;
    margin: 0 auto;
    padding: 0.625rem 4.205rem;
  }

  .nav-item-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dropdown-header {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    min-height: 44px;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 2rem 1.25rem;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero-left {
    order: 1;
  }

  .hero-left-text {
    margin-bottom: 2rem;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .mid-heading {
    font-size: 1.75rem;
  }

  .subtitle {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .hero-sub-headings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-left-image {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-left-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
  }

  .hero-right {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .hero-right-image-wrapper {
    width: 100%;
    margin: 0;
    order: 2;
  }

  .hero-right-image-bg {
    position: absolute;
    top: 0.5rem;
    right: -0.5rem;
    width: 100%;
    height: 100%;
    background: var(--color-secondary);
    border-radius: 1.25rem;
  }

  .hero-right-image {
    position: relative;
    width: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
  }

  .hero-right-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .hero-right-text {
    order: 1;
    padding: 0;
  }

  .hero-right-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero-right-text .italic {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-right-text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .link-btn {
    font-size: 0.875rem;
    margin-top: 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Testimonials Mobile */
  .testimonials-section {
    padding: 3rem 1.25rem;
  }

  .testimonials-header {
    font-size: 1.75rem;
    margin-bottom: 3.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonial-text {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .author-name {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
  }

  .author-location {
    font-size: 1.5rem;
  }

  .testimonials-navigation {
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 1rem;
  }

  /* Services Section Mobile */
  .services-section {
    padding: 3rem 0;
  }

  .services-wrapper {
    padding: 3rem 1.25rem;
    gap: 2.5rem;
    max-width: 92%;
  }

  .services-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .services-header p {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .services-nav {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 2.5rem;
  }

  .services-nav-column {
    display: contents;
  }

  .services-nav button {
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8125rem;
  }

  .services-nav button.active::after {
    bottom: 0.75rem;
    left: auto;
    right: 1rem;
    transform: none;
  }

  .services-nav button:last-child {
    border-bottom: none;
  }

  .service-card-wrapper {
    padding: 0;
  }

  .service-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .service-content {
    order: 2;
  }

  .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .service-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .service-image {
    order: 1;
    height: 18.75rem;
    border-radius: 1rem;
  }

  .services-decorative-bar-top,
  .services-decorative-bar-bottom {
    display: none;
  }

  .services-badge {
    display: none;
  }

  /* Steps Section Mobile */
  .steps-section {
    padding: 3rem 1.25rem;
  }

  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps-content {
    order: 1;
  }

  .steps-content h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .steps-image {
    order: 2;
    height: auto;
    min-height: 18.75rem;
    border-radius: 1rem;
  }

  .steps {
    gap: 2rem;
  }

  .step {
    margin-left: 0;
    gap: 1rem;
  }

  .step-number {
    font-size: 3rem;
  }

  .step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .step p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  /* Footer Mobile */
  footer {
    padding: 2.5rem 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    order: 1;
  }

  .footer-top .cta-btn {
    width: 100%;
    max-width: 20rem;
    background: var(--color-white);
    color: var(--color-secondary);
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
    order: 2;
    display: flex;
    flex-direction: column;
  }

  /* First column - appears last */
  .footer-links a:nth-child(1) {
    order: 9;
  } /* TERMS & CONDITIONS */
  .footer-links a:nth-child(4) {
    order: 10;
  } /* EMAIL US */
  .footer-links a:nth-child(7) {
    order: 11;
  } /* ARTICLES */
  .footer-links a:nth-child(10) {
    order: 12;
  } /* CAREERS */

  /* Second column - appears first */
  .footer-links a:nth-child(2) {
    order: 1;
  } /* SOCIAL MEDIA */
  .footer-links a:nth-child(5) {
    order: 2;
  } /* GRAPHIC DESIGN */
  .footer-links a:nth-child(8) {
    order: 3;
  } /* VIDEO EDITING */
  .footer-links a:nth-child(11) {
    order: 4;
  } /* SERMON PUBLISHING */

  /* Third column - appears second */
  .footer-links a:nth-child(3) {
    order: 5;
  } /* WEBSITE MANAGEMENT */
  .footer-links a:nth-child(6) {
    order: 6;
  } /* EMAIL MARKETING */
  .footer-links a:nth-child(9) {
    order: 7;
  } /* DIGITAL MARKETING */
  .footer-links a:nth-child(12) {
    order: 8;
  }

  .footer-links a {
    letter-spacing: 0.0625rem;
    display: block;
  }

  .footer-logo {
    order: 3;
    text-align: center;
    padding: 2rem 0;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
    gap: 1rem;
  }

  .social-links a img {
    width: 1.75rem;
    height: 1.75rem;
  }

  .copyright {
    text-align: center;
    margin-top: 2rem;
  }
}

@media (max-width: 640px) {
  nav {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: var(--spacing-md);
  }

  .hero-title-section h1 {
    font-size: 2rem;
  }

  .content-text h2 {
    font-size: 1.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-container {
    padding: 3.125rem 2.5rem;
  }

  .services-decorative-bar-top,
  .services-decorative-bar-bottom {
    height: 2.5rem;
  }

  .services-decorative-bar-top {
    width: 40%;
    top: 2rem;
  }

  .services-decorative-bar-bottom {
    width: 40%;
    bottom: 2rem;
  }
}

/* ===== SOCIAL MEDIA PAGE ===== */

/* Hero Section */
.hero-section {
  padding: 0 var(--spacing-lg) var(--spacing-2xl);
  background: var(--color-white);
  position: relative;
}

.hero-section .hero-container {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  padding-top: 3.75rem;
}

.social-media-badge {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(180deg);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  z-index: 3;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-top {
  position: relative;
  margin-bottom: 5rem;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 42.5rem;
  margin: 0 auto 3.125rem;
}

.hero-image-bg {
  position: absolute;
  top: 0.625rem;
  right: -0.625rem;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  border-radius: var(--border-radius);
  z-index: 1;
}

.hero-image {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-title-section {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-section h1 {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--color-dark);
}

.hero-subtitle {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
}

/* Content Sections */
.content-section {
  padding: 0 var(--spacing-lg) 5rem;
  background: var(--color-white);
}

.content-wrapper {
  width: 90%;
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 2rem;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
  margin-bottom: 3.75rem;
  padding: 3.75rem;
  border-radius: var(--border-radius);
  position: relative;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  color: var(--color-dark);
  line-height: 1.3;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.content-text p:last-child {
  margin-bottom: 0;
}

.content-text .highlight-text {
  color: var(--color-primary);
  font-weight: 700;
}

.content-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  width: 100%;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 6.25rem 3.75rem;
  background: var(--color-white);
  position: relative;
}

.cta-container {
  width: 100%;
  margin: 0 auto;
  background: var(--color-primary);
  border-radius: 0 0 3.125rem 3.125rem;
  padding: 5rem 6.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.875rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.875rem;
  line-height: 1.2;
}

.cta-content h2 .underline {
  text-decoration: underline;
  text-decoration-color: var(--color-secondary);
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.5rem;
}

.cta-content p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.cta-content .bold-text {
  font-weight: 700;
}

.cta-content .cta-btn {
  background: var(--color-secondary);
  color: var(--color-white);
  margin-top: 1.875rem;
}

.cta-content .cta-btn:hover {
  background: #00b3a5;
}

.service-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===== SUCCESS PAGE STYLES ===== */
.success-services-section .services-header h2 {
  font-size: 3rem;
  font-weight: 800;
}

.success-services-section .services-header p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.success-services-section .services-header .underlined {
  text-decoration: underline;
  text-decoration-color: var(--color-white);
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.375rem;
}

.success-cta-message {
  grid-area: header;
  text-align: center;
  color: var(--color-white);
  padding: 0 3.75rem;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

.success-cta-message p {
  background: var(--color-secondary);
  display: inline-block;
  padding: 0.6rem 3.75rem;
  border-radius: 3.125rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2rem;
  letter-spacing: 0.03125rem;
}

.success-services-section .services-wrapper {
  grid-template-areas: "badge header header" "badge cta cta" "badge nav nav" "badge card card";
}

.success-services-section .service-card-wrapper {
  margin-top: 1.5rem;
}

@media (max-width: 968px) {
  .success-services-section .services-header h2 {
    font-size: 2.25rem;
  }

  .success-services-section .services-header p {
    font-size: 1.125rem;
  }

  .success-cta-message p {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

@media (max-width: 600px) {
  .success-services-section .services-header h2 {
    font-size: 1.875rem;
  }

  .success-services-section .services-header p {
    font-size: 1rem;
  }

  .success-cta-message {
    padding: 0 1.875rem;
  }

  .success-cta-message p {
    font-size: 0.875rem;
    padding: 0.875rem 1.5rem;
  }
}

/* ===== BLOG ARCHIVE PAGE ===== */

/* Blog Articles */
.blog-articles {
  max-width: 100%;
  padding-top: 1.25rem;
}

.blog-content-inner {
  padding: 3.75rem;
}

.blog-article {
  display: flex;
  gap: 1.875rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.article-content {
  flex: 1;
}

.article-content h2 {
  font-size: 1.375rem;
  color: var(--color-dark);
  margin-bottom: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
}

.article-snippet {
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

.article-snippet p {
  margin-bottom: 0.9375rem;
  font-weight: 500;
}

.article-snippet p:last-child {
  margin-bottom: 0;
}

.view-article-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.5rem 1.75rem;
  border-radius: 1.25rem;
  font-size: 0.625rem;
  letter-spacing: 0.09375rem;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.view-article-btn:hover {
  background: #c45f45;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.5rem rgba(219, 113, 80, 0.2);
}

.article-image {
  width: 17.5rem;
  height: 10rem;
  border-radius: 0.9375rem;
  overflow: hidden;
  flex-shrink: 0;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-posts {
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-gray);
  padding: 3.75rem 0;
}

/* Blog Archive Footer */
.blog-archive-footer {
  background: linear-gradient(to right, #4dc4c4 0%, #3db5b5 100%);
  padding: 0.9375rem 3.125rem;
  width: 90%;
  margin: 0 auto;
  border-radius: 0 0 0 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  font-size: 0.625rem;
  letter-spacing: 0.125rem;
  font-weight: 600;
  position: relative;
}

/* Responsive Design for Blog Archive */
@media (max-width: 768px) {
  .blog-sidebar-badge {
    position: static;
    width: 100%;
    height: 3.75rem;
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.5rem;
    letter-spacing: 0.25rem;
  }

  .blog-hero-main {
    margin-left: 0;
    padding: 1.25rem;
  }

  .blog-article {
    flex-direction: column;
  }

  .article-image {
    width: 100%;
    height: 12.5rem;
  }

  .blog-hero-top .hero-title-section h1 {
    font-size: 1.375rem;
  }

  .article-content h2 {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .blog-hero-top .hero-image {
    height: 7.5rem;
  }

  .article-snippet {
    font-size: 0.625rem;
  }

  .footer-pagination-left {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== BLOG SINGLE POST PAGE ===== */

/* Blog Single Hero Section */
.blog-single-hero {
  padding: 3.75rem var(--spacing-lg) 2.5rem;
  background: var(--color-white);
}

.blog-single-hero-container {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-single-hero-image {
  width: 100%;
  margin-bottom: 2.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.blog-single-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-single-title-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-single-title-section h1 {
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.blog-single-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 1.5625rem;
}

.blog-single-title-section .cta-btn {
  margin-bottom: 2.5rem;
}

/* Blog Single Content Section */
.blog-single-content {
  padding: 0 var(--spacing-lg) 3.75rem;
  background: var(--color-white);
}

.blog-single-content-wrapper {
  /* page content width set to 80% per request */
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.blog-content-section {
  margin-bottom: 3.125rem;
}

.blog-content-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
  margin-bottom: 1.25rem;
}

.blog-content-section p {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  text-align: justify;
  font-weight: 500;
}

.blog-content-section p:last-child {
  margin-bottom: 0;
}

/* Two Column Images */
.blog-two-column-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
  margin: 2.5rem 0 3.125rem;
}

.blog-image-wrapper {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.blog-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Apply Today Section */
.blog-apply-section {
  background: var(--color-primary);
  padding: 5rem 3.75rem;
  margin-top: 3.75rem;
  position: relative;
  width: 80%;
  margin: 0 auto;
  border-radius: 2rem;
  margin-bottom: 5rem;
}

/* ===== Single post specific overrides ===== */
.post-hero .hero-image-bg {
  background: var(--color-primary);
}

/* Ensure the hero image background offset is positioned and rounded like the design */
.post-hero .hero-image-bg {
  position: absolute;
  top: 0.625rem;
  right: -0.625rem;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  z-index: 1;
}

.post-hero .hero-title-section h1 {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 700;
}

.post-hero .social-hero-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-apply-content {
  max-width: 56.25rem;
  margin: 0 auto;
}

.blog-apply-section h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  font-style: italic;
  margin-bottom: 1.5625rem;
  line-height: 1.1;
}

.blog-apply-email {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 2.1875rem;
  font-weight: 500;
}

.blog-apply-email a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
}

.blog-apply-email a:hover {
  text-decoration: underline;
}

.blog-apply-logo {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-apply-logo span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-family);
}

.blog-apply-company {
  font-size: 0.8125rem;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
}

.blog-apply-desc {
  font-size: 0.8125rem;
  color: var(--color-white);
  line-height: 1.8;
  margin-bottom: 0.9375rem;
  font-weight: 400;
}

.blog-apply-desc strong {
  font-weight: 700;
}

.blog-apply-desc:last-of-type {
  margin-bottom: 0;
}

/* Responsive Design for Blog Single Post */
@media (max-width: 1024px) {
  .blog-single-content-wrapper {
    padding: 0 1.875rem;
  }
}

@media (max-width: 768px) {
  .blog-single-hero {
    padding: 2.5rem var(--spacing-sm) 1.875rem;
  }

  .blog-single-title-section h1 {
    font-size: 2.25rem;
  }

  .blog-single-content {
    padding: 0 var(--spacing-sm) 2.5rem;
  }

  .blog-single-content-wrapper {
    padding: 0 1.25rem;
  }

  .blog-content-section h2 {
    font-size: 1.125rem;
  }

  .blog-content-section p {
    font-size: 0.8125rem;
  }

  .blog-two-column-images {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 1.875rem 0 2.5rem;
  }

  .blog-apply-section {
    padding: 3.75rem 1.875rem;
  }

  .blog-apply-section h2 {
    font-size: 2.625rem;
  }

  .blog-apply-email {
    font-size: 0.875rem;
  }

  .blog-apply-desc {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .blog-single-title-section h1 {
    font-size: 1.75rem;
  }

  .blog-single-meta {
    font-size: 0.625rem;
  }

  .blog-content-section h2 {
    font-size: 1rem;
  }

  .blog-content-section p {
    font-size: 0.75rem;
    text-align: left;
  }

  .blog-apply-section {
    padding: 2.5rem 1.25rem;
  }

  .blog-apply-section h2 {
    font-size: 2rem;
  }

  .blog-apply-logo {
    width: 3rem;
    height: 3rem;
  }

  .blog-apply-logo span {
    font-size: 2rem;
  }
}

/* ===== TERMS & PRIVACY PAGE ===== */
.terms-container {
  padding: 4rem 8rem;
}

.terms-heading {
  color: var(--color-dark);
  font-size: 2.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.terms-section-title {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 1rem;
}

.terms-section-content {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-dark);
  letter-spacing: 0.0125rem;
}

@media screen and (max-width: 1080px) {
  .terms-container {
    padding: 4rem;
  }

  .terms-heading {
    font-size: 2rem;
  }
}

/* ===== CONTACT MODAL ===== */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal.active .contact-modal__container {
  transform: translateX(0);
}

.contact-modal.active .contact-modal__overlay {
  opacity: 1;
}

.contact-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.contact-modal__container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 45rem;
  height: 100%;
  background: var(--color-secondary);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.contact-modal__close {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
  transition: opacity 0.25s ease;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-modal__close:hover {
  opacity: 0.7;
}

.contact-modal__close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-modal__content {
  padding: 5rem 4rem 4rem 5rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-modal__header {
  margin-bottom: 3rem;
}

.contact-modal__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.contact-modal__description {
  font-size: 1rem;
  color: var(--color-white);
  line-height: 1.6;
  max-width: 28rem;
  font-weight: 500;
}

.contact-modal__highlight {
  font-style: italic;
  font-weight: 900;
}

.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.contact-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-modal__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.contact-modal__input {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-white);
  color: var(--color-white);
  font-size: 1rem;
  padding: 0.75rem 0;
  font-family: var(--font-family);
  transition: border-color 0.25s ease;
  outline: none;
}

.contact-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-modal__input:focus {
  border-bottom-color: var(--color-primary);
}

.contact-modal__input:-webkit-autofill {
  -webkit-text-fill-color: var(--color-white);
  -webkit-box-shadow: 0 0 0 1000px var(--color-secondary) inset;
  transition: background-color 5000s ease-in-out 0s;
}

.contact-modal__submit {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.875rem 4rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  align-self: flex-start;
  font-family: var(--font-family);
}

.contact-modal__submit:hover {
  background: #c45f45;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(219, 113, 80, 0.3);
}

.contact-modal__submit:active {
  transform: translateY(0);
}

.contact-modal__watermark {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* Mobile View - Full Viewport */
@media (max-width: 968px) {
  .contact-modal__container {
    max-width: 100%;
    width: 100%;
  }

  .contact-modal__content {
    padding: 4rem 2rem 3rem 2rem;
  }

  .contact-modal__close {
    top: 1.5rem;
    left: 1.5rem;
  }

  .contact-modal__title {
    font-size: 2.25rem;
  }

  .contact-modal__description {
    font-size: 0.9375rem;
    max-width: 100%;
  }

  .contact-modal__form {
    gap: 1.5rem;
  }

  .contact-modal__submit {
    width: 100%;
    align-self: stretch;
  }

  .contact-modal__watermark {
    font-size: 3.5rem;
    right: -1.5rem;
    letter-spacing: 0.5rem;
  }
}

@media (max-width: 480px) {
  .contact-modal__content {
    padding: 3.5rem 1.5rem 2.5rem 1.5rem;
  }

  .contact-modal__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .contact-modal__description {
    font-size: 0.875rem;
  }

  .contact-modal__header {
    margin-bottom: 2rem;
  }

  .contact-modal__watermark {
    font-size: 2.5rem;
    right: -1rem;
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}
