:root {
  /* Color Variables */
  --white-color: #FFFFFF;
  --brand-color: #7B8476;
  --secondary-color: #E0BCA4;

  /* Font Variables */
  --font-family: 'Inter', sans-serif;
  --font-size-base-mobile: 4px; /* mobile base size */
  --font-size-base-tablet: 4px; /* tablet base size */
  --font-size-base-desktop: 8px; /* desktop base size */
  --font-size-sm: 2.5rem; /* m: 10px, t: 10px, d: 20px */
  --font-size-md: 3.5rem; /* m: 14px, t: 14px, d: 28px */
  --font-size-lg: 4.5rem; /* m: 18px, t: 18px, d: 36px */
  --font-size-xl: 6rem; /* m: 24px, t: 24px, d: 48px */
  --font-size-xxl: 8rem; /* m: 32px, t: 32px, d: 64px */
  --line-height-base: 1.5;
  --line-height-xs: 1.2;
  --line-height-sm: 1.4;
  --line-height-md: 1.6;
  --line-height-lg: 1.8;
  --line-height-xl: 2;
  --line-height-xxl: 2.2;
  --font-weight-thin: 100;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base-mobile);
}

@media (min-width: 768px) {
  html {
    font-size: var(--font-size-base-tablet);
  }
}

@media (min-width: 1024px) {
  html {
    font-size: var(--font-size-base-desktop);
  }
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-base);
  color: var(--white-color);
}

/* Header Component */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 2rem 0;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 150px;
  width: 150px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .header__logo-img {
    height: 200px;
    width: 200px;
    margin-left: -25px;
  }
}

@media (min-width: 1024px) {
  .header__logo-img {
    height: 200px;
    width: 200px;
  }
}

/* Hero Component */
.hero {
  min-height: 100vh;
  background-color: var(--brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  position: relative;
}

.hero__container {
  max-width: 1200px;
  margin: 45px auto 0 auto;
  padding: 0 40px;
}

.hero__content {
  margin: 0 auto;
}

.hero__title {
  font-size: 40px;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-sm);
  margin-bottom: 2rem;
  color: var(--white-color);
}

.hero__title--highlight {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-md);
  margin-bottom: 120px;
  color: var(--white-color);
}

.hero__subtitle strong {
  font-weight: var(--font-weight-bold);
}

.hero__cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero__cta:hover {
  transform: translateY(5px);
}

.hero__cta-text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
  color: var(--secondary-color);
}

.hero__cta-text strong {
  font-weight: var(--font-weight-bold);
}

.hero__cta-arrow {
  width: 2rem;
  height: auto;
  opacity: 0.8;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .hero__container{
    margin: 0 auto;
  }

  .hero__title {
    font-size: 60px;
    font-weight: var(--font-weight-regular);
    margin-bottom: 30px;
  }
  
  .hero__subtitle {
    font-size: var(--font-size-xxl);
  }

  .hero__cta {
    position: absolute;
    bottom: 120px;
    right: 40px;
  }
  
  .hero__cta-text {
    font-size: var(--font-size-xl);
  }
  
  .hero__cta-arrow {
    width: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__container{
    padding: 0 80px 0 140px;
    margin: 0 auto;
  }

  .hero__title {
    font-size: 40px;
  }
  
  .hero__subtitle {
    font-size: 30px;
    line-height: var(--line-height-sm);
    font-weight: var(--font-weight-thin);
    margin-bottom: 80px;
  }

  .hero__cta {
    position: absolute;
    bottom: 160px;
    right: 60px;
  }
  
  .hero__cta-text {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-thin);
  }
  
  .hero__cta-arrow {
    width: 3rem;
  }
}

/* Team Component */
.team {
  background-color: var(--white-color);
  padding: 16px 0;
  color: var(--brand-color);
}

.team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.team__title {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-sm);
  margin-bottom: 2rem;
  color: var(--brand-color);
}

.team__description {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-thin);
  line-height: var(--line-height-md);
  margin-bottom: 3rem;
  color: var(--brand-color);
}

.team__highlight {
  font-weight: var(--font-weight-bold);
  color: var(--brand-color);
}

.team__members {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 24px;
}

.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.team__member-photo {
  width: 100%;
}

.team__member-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: 0px -110px;
  filter: grayscale(100%);
}

.team__member-info {
  display: none; /* Hidden on mobile - info shown in modal */
}

.team__member-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--brand-color);
  margin-bottom: 0.25rem;
}

.team__member-role {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  color: var(--brand-color);
  opacity: 0.7;
}

.team__philosophy {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-thin);
  line-height: var(--line-height-md);
  color: var(--brand-color);
}

/* Team Member Experience Overlay (Desktop hover effect) */
.team__member-photo {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.team__member-experience {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white-color);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  display: none; /* Hidden on mobile */
  max-height: 100%;
  overflow-y: auto;
}

.team__member-experience-text {
  font-size: 14px;
  line-height: var(--line-height-md);
  color: var(--brand-color);
  margin: 0;
  font-weight: var(--font-weight-regular);
}

/* Team Modal (Mobile) */
.team-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

@media (max-width: 1023px) {
  .team__member-photo {
    cursor: pointer;
  }
}

.team-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.team-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.team-modal__content {
  position: relative;
  background-color: var(--white-color);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s ease-in-out;
}

.team-modal.active .team-modal__content {
  transform: scale(1);
}

.team-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-color);
  color: var(--white-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.team-modal__close:hover {
  background-color: var(--secondary-color);
}

.team-modal__image {
  width: 100%;
  height: auto;
}

.team-modal__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.team-modal__info {
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--secondary-color);
}

.team-modal__name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--brand-color);
  margin: 0;
}

.team-modal__role {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  color: var(--brand-color);
  margin: 0;
  opacity: 0.7;
}

.team-modal__experience {
  padding: 12px;
}

.team-modal__experience-text {
  font-size: var(--font-size-md);
  line-height: var(--line-height-md);
  color: var(--brand-color);
  margin: 0;
  font-weight: var(--font-weight-regular);
}

/* Responsive adjustments for Team */
@media (min-width: 768px) {
  .team {
    padding: 6rem 0;
  }
  
  .team__container {
    padding: 0 4rem;
  }
  
  .team__members {
    flex-direction: row;
    justify-content: space-between;
    gap: 2px;
  }
  
  .team__member {
    flex-direction: column;
    text-align: center;
  }
  
  .team__member-photo {
    flex-shrink: 0;
    width: auto;
  }
  
  .team__member-img {
    width: 366px;
    height: 275px;
  }
  
  .team__member-info {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .team {
    padding: 8rem 0;
  }
  
  .team__container {
    padding: 0 8rem;
  }
  
  .team__content {
    max-width: 900px;
  }

  .team__member-info {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  
  .team__title {
    font-size: var(--font-size-xxl);
    margin-bottom: 3rem;
  }
  
  .team__description {
    font-size: var(--font-size-md);
    margin-bottom: 4rem;
  }
  
  .team__members {
    margin-bottom: 4rem;
    gap: 8px;
  }
  
  .team__member-img {
    width: 440px;
    height: 400px;
  }
  
  .team__member-name {
    font-size: var(--font-size-sm);
  }
  
  .team__member-role {
    font-size: var(--font-size-sm);
  }
  
  .team__philosophy {
    font-size: var(--font-size-md);
  }
  
  /* Desktop hover effect - show experience overlay */
  .team__member-experience {
    display: block;
  }
  
  .team__member-photo:hover .team__member-experience {
    transform: translateY(0);
  }
  
  /* Hide modal on desktop */
  .team-modal {
    display: none !important;
  }
}

/* Target Section - Mobile First */
.target {
  display: none; /* Hidden on mobile */
  background-color: #A8A092;
  position: relative;
  overflow: hidden;
}

.target__container {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target__arrow {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.target__arrow-img {
  width: 200px;
  height: auto;
  transform: translateX(-100%);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.target__arrow-img.target__arrow--animate {
  transform: translateX(150px);
}

.target__bullseye {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.target__bullseye-img {
  width: 250px;
  height: auto;
}

/* Target Section - Tablet */
@media (min-width: 768px) {
  .target {
    display: block;
    background-color: var(--white-color);
  }
  
  .target__overlay {
    background-color: var(--brand-color);
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
  }

  .target__container {
    height: 350px;
  }

  .target__arrow {
    left: 10%;
    top: 60%;
  }
  
  .target__arrow-img {
    width: 390px;
  }
  
  .target__arrow-img.target__arrow--animate {
    transform: translateX(-20px);
  }
  
  .target__bullseye {
    right: 5%;
    top: 55%;
  }

  .target__bullseye-img {
    width: 290px;
  }
}

/* Target Section - Desktop */
@media (min-width: 1024px) {
  .target {
    padding: 0;
  }
  
  .target__container {
    height: 300px;
    max-width: 1200px;
  }
  
  .target__arrow-img {
    width: 390px;
  }

  .target__arrow {
    left: 5%;
    top: 55%;
  }
  
  .target__arrow-img.target__arrow--animate {
    transform: translateX(250px);
  }

  .target__bullseye {
    right: 5%;
    top: 50%;
  }
  
  .target__bullseye-img {
    width: 290px;
  }
}

/* Workflow Section - Mobile First */
.workflow {
  background-color: var(--white-color);
  padding: 2rem 0;
}

.workflow__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.workflow__header {
  padding: 20px 0;
  text-align: center;
}

.workflow__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-regular);
  color: var(--brand-color);
  line-height: var(--line-height-xs);
}

.workflow__title--highlight {
  font-weight: var(--font-weight-bold);
}

.workflow__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.workflow__step {
  display: grid;
  grid-template-columns: 1fr;
  text-align: left;
  gap: 1.5rem;
  padding: 12px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.workflow__step:nth-child(odd) {
  background-color: var(--secondary-color);
}

.workflow__step:nth-child(even) {
  background-color: var(--brand-color);
  color: var(--white-color);
}

.workflow__step--animate {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.workflow__step:nth-child(1) {
  transition-delay: 0.1s;
}

.workflow__step:nth-child(2) {
  transition-delay: 0.2s;
}

.workflow__step:nth-child(3) {
  transition-delay: 0.3s;
}

.workflow__step:nth-child(4) {
  transition-delay: 0.4s;
}

.workflow__step:nth-child(5) {
  transition-delay: 0.5s;
}

.workflow__step-number {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: inherit;
  margin-bottom: 1rem;
}

.workflow__step-content {
  order: 2;
}

.workflow__step-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
  line-height: var(--line-height-sm);
}

.workflow__step-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workflow__step-text {
  font-size: var(--font-size-md);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-thin);
}

.workflow__step-highlight {
  font-weight: var(--font-weight-bold);
}

.workflow__step-services {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.workflow__step-service {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-md);
}

.workflow__step-image {
  order: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.workflow__step-img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

/* Tablet adjustments */
@media (min-width: 768px) {
  .workflow {
    padding: 3rem 0;
  }
  
  .workflow__container {
    padding: 0 2rem;
  }
  
  .workflow__header {
    margin-bottom: 3rem;
  }
  
  .workflow__title {
    font-size: var(--font-size-xxl);
  }

  .workflow__step-description {
    min-width: 300px;
    max-width: 300px;
  }
  
  .workflow__steps {
    gap: 2.5rem;
  }
  
  .workflow__step {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    align-items: start;
    gap: 16px;
    padding: 16px;
    height: 180px;
  }
  
  .workflow__step-number {
    font-size: var(--font-size-xxl);
    margin-bottom: 0;
    min-width: 4rem;
  }
  
  .workflow__step-content {
    order: unset;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    height: 100%;
    justify-content: space-between;
  }
  
  .workflow__step-title {
    font-size: var(--font-size-lg);
    margin: 0;
  }
  
  .workflow__step-text,
  .workflow__step-service {
    font-size: 11px;
    font-weight: var(--font-weight-thin);
  }
  
  .workflow__step-image {
    order: unset;
    min-width: 120px;
  }
  
  .workflow__step-img {
    max-height: 120px;
  }
  
  .workflow__step--reverse {
    grid-template-columns: auto auto 1fr;
  }
  
  .workflow__step--reverse .workflow__step-content {
    order: 3;
  }
  
  .workflow__step--reverse .workflow__step-image {
    order: 2;
  }
  
  .workflow__step--reverse .workflow__step-number {
    order: 1;
  }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
  .workflow {
    padding: 4rem 0;
  }
  
  .workflow__header {
    text-align: left;
    margin: 0;
  }

  .workflow__title {
    font-size: var(--font-size-xl);
  }
  
  .workflow__steps {
    gap: 3rem;
  }
  
  .workflow__step {
    height: 235px;
  }

  .workflow__step-number {
    font-size: var(--font-size-xl);
  }

  .workflow__step-title {
    font-size: 32px;
    margin-left: 20px;
  }

  .workflow__step-text {
    font-size: 14px;
  }

  .workflow__step-img, .workflow__step-img {
    min-width: 200px;
    max-height: 200px;
  }
}

/* ===== CLIENTS SECTION ===== */
.clients {
  padding: 8px 0px;
  background-color: var(--white-color);
}

.clients__container {
  max-width: 1200px;
  margin: 0 auto;
}

.clients__header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 16px;
}

.clients__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-regular);
  color: var(--brand-color);
  margin-bottom: 1rem;
  line-height: var(--line-height-sm);
}

.clients__title--highlight {
  font-weight: var(--font-weight-bold);
}

.clients__subtitle {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  color: var(--brand-color);
  line-height: var(--line-height-base);
  opacity: 0.8;
}

.clients__subtitle--highlight {
  font-weight: var(--font-weight-bold);
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.clients__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(123, 132, 118, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 70px;
}

.clients__item:not(:nth-child(odd)) {
  background-color: rgba(224, 188, 164, 0.1);
}

.clients__item.clients__item-odd-mobile {
  background-color: rgba(224, 188, 164, 0.1);
}

.clients__item.clients__item-not-odd-mobile {
  background-color: rgba(123, 132, 118, 0.1);
}

.clients__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 132, 118, 0.15);
}

.clients__logo {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.clients__item:hover .clients__logo {
  filter: grayscale(0%);
}

/* Tablet Styles */
@media (min-width: 768px) {
  .clients {
    padding: 4rem 2rem;
  }
  
  .clients__header {
    margin-bottom: 4rem;
    text-align: left;
  }

  .clients__title {
    font-size: var(--font-size-xxl);
  }

  .clients__subtitle {
    font-size: var(--font-size-lg);
  }
  
  .clients__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  
  .clients__item {
    padding: 1.5rem;
    height: 100px;
  }
  
  .clients__logo {
    max-height: 80px;
  }

  .clients__item.clients__item-odd-mobile {
    background-color: rgba(123, 132, 118, 0.1);
  }

  .clients__item.clients__item-not-odd-mobile {
    background-color: rgba(224, 188, 164, 0.1);
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .clients {
    padding: 20px 0px;
  }
  
  .clients__header {
    margin-bottom: 5rem;
    padding: 16px;
  }

  .clients__title {
    font-size: var(--font-size-xl);
  }

  .clients__subtitle {
    font-size: var(--font-size-md);
  }
  
  .clients__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0px;
  }
  
  .clients__item {
    padding: 2rem;
    height: 160px;
  }
  
  .clients__logo {
    max-height: 100px;
  }
}

/* Utility Classes, Always keep at bottom */

.thin {
  font-weight: var(--font-weight-thin);
}

.regular {
  font-weight: var(--font-weight-regular);
}

.semibold {
  font-weight: var(--font-weight-medium);
}

.bold {
  font-weight: var(--font-weight-bold);
}

.brand-color {
  color: var(--brand-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.white-color {
  color: var(--white-color);
}

/* Contact Section */
.contact {
  background-color: var(--white-color);
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__text {
  text-align: left;
  padding: 16px;
}

.contact__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--brand-color);
  margin-bottom: 1rem;
  line-height: var(--line-height-sm);
}

.contact__subtitle {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  color: var(--brand-color);
  line-height: var(--line-height-md);
  margin-top: 16px;
  margin-bottom: 2rem;
}

.contact__subtitle--highlight {
  font-weight: var(--font-weight-bold);
}

.contact__form-container {
  align-items: center;
}

.contact__image {
  min-width: 100%;
  max-width: 300px;
  background: var(--secondary-color);
}

.contact__image-img {
  width: 100%;
  height: auto;
}

.contact__form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 24px;
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 8px 0;
}

.contact__form-label {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--brand-color);
}

.contact__form-input,
.contact__form-select {
  padding: 0.75rem;
  border: none;
  border-bottom: 2px solid var(--brand-color);
  background-color: transparent;
  font-size: 16px;
  font-family: var(--font-family);
  color: var(--brand-color);
  outline: none;
  transition: border-color 0.3s ease;
}

.contact__form-input:focus,
.contact__form-select:focus {
  border-bottom-color: var(--secondary-color);
}

.contact__form-input::placeholder {
  color: rgba(123, 132, 118, 0.6);
}

.contact__form-select {
  cursor: pointer;
}

.contact__form-button {
  padding: 10px 2rem;
  background-color: var(--brand-color);
  color: var(--white-color);
  border: none;
  border-radius: 4px;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family);
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.contact__form-button:hover {
  background-color: var(--secondary-color);
  color: var(--brand-color);
}

.contact__form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact__form-message {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  text-align: center;
}

.contact__form-message--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact__form-message--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Tablet styles */
@media (min-width: 768px) {
  .contact {
    padding: 12px 0 0 0;
  }

  .contact__form-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .contact__image {
    flex: 1;
    max-width: none;
    min-width: 50%;
    height: -webkit-fill-available;
    display: flex;
    flex-flow: column-reverse;
  }

  .contact__image-img {
    width: 117%;
    margin-left: -25px;
  }

  .contact__form {
    flex: 1;
    max-width: none;
    padding-left: 8px;
  }

  .contact__title {
    font-size: var(--font-size-xxl);
  }

  .contact__text {
    padding: 16px;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .contact {
    padding: 32px 0 0 0;
  }

  .contact__content {
    gap: 3rem;
  }

  .contact__title {
    font-size: var(--font-size-xl);
  }

  .contact__subtitle {
    font-size: var(--font-size-md);
  }

  .contact__form-container {
    gap: 4rem;
  }

  .contact__image-img {
    width: 135%;
    margin-left: -84px;
  }
}

/* ================================
   FOOTER SECTION
   ================================ */

.footer {
  background-color: var(--brand-color);
  padding: 2rem 1rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo-img {
  width: 200px;
  object-fit: contain;
}

.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer__legal-link {
  color: var(--white-color);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.footer__legal-link:hover {
  opacity: 0.8;
}

.footer__location-text {
  color: var(--white-color);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  opacity: 0.9;
}

/* Tablet styles */
@media (min-width: 768px) {
  .footer {
    padding: 2.5rem 2rem;
  }

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .footer__info {
    align-items: center;
    text-align: center;
    flex-grow: 1;
    margin-right: 130px;
  }

  .footer__logo-img {
    width: 120px;
  }

}

/* Desktop styles */
@media (min-width: 1024px) {
  .footer {
    padding: 3rem 2rem;
  }

  .footer__content {
    gap: 3rem;
  }

  .footer__logo-img {
    width: 200px;
  }

  .footer__legal-link,
  .footer__location-text {
    font-size: var(--font-size-md);
  }
}

/* WhatsApp Button Component */
.whatsapp-button {
  position: fixed;
  bottom: 40px;
  right: 35px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-button:active {
  transform: scale(0.95);
}

.whatsapp-button__icon {
  width: 36px;
  height: 36px;
}

/* Tablet styles */
@media (min-width: 768px) {
  .whatsapp-button {
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 45px;
  }

  .whatsapp-button__icon {
    width: 42px;
    height: 42px;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .whatsapp-button {
    width: 80px;
    height: 80px;
    bottom: 40px;
    right: 40px;
  }

  .whatsapp-button__icon {
    width: 48px;
    height: 48px;
  }
}