/* ========================================== */
/* CSS VARIABLES (DESIGN TOKENS)            */
/* ========================================== */


/* Responsive Typography */
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4.5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/* ========================================== */
/* BASE & RESET                              */
/* ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-lato);
  font-size: var(--normal-font-size);
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.4s;
}

h1, h2, h3, h4 {
  color: var(--color-primary);
  font-weight: var(--font-bold);
}

ul {
  list-style: none;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

.main {
  overflow: hidden;
}

.hide-on-sm {
  display: none;
}

/* ========================================== */
/* UTILITY CLASSES                           */
/* ========================================== */
.grid {
  display: grid;
  gap: 1.5rem;
}

/* Vertical Spacing Utilities */
.space-y-2 > * + * { margin-top: 0.5rem !important; }
.space-y-4 > * + * { margin-top: 1rem !important; }
.space-y-8 > * + * { margin-top: 2rem !important; }
.space-y-10 > * + * { margin-top: 2.5rem !important; }
.space-y-2 > *, .space-y-4 > *, .space-y-8 > *, .space-y-10 > * {
  margin-bottom: 0 !important;
}

/* Section Titles */
.section__title-1,
.section__title-2 {
  position: relative;
  font-size: var(--h1-font-size);
  width: max-content;
  margin: 0.75rem auto 2rem;
}

.section__title-1 span,
.section__title-2 span {
  z-index: 5;
  position: relative;
}

.section__title-1::after,
.section__title-2::after {
  content: "";
  width: 40px;
  height: 28px;
  background-color: var(--color-accent);
  opacity: 0.2;
  position: absolute;
}

.section__title-1::after {
  top: -4px;
  right: -8px;
}

.section__title-2::after {
  bottom: -4px;
  right: -8px;
}

/* Geometric Box */
.geometric-box {
  position: absolute;
}

.geometric-box img {
  width: 150px;
  height: auto;
}

/* Accent Underline */
.accent-underline {
  position: relative;
  display: inline-block;
}

.accent-underline::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-accent);
  transform: scaleX(0.25);
  transform-origin: center;
}

/* Buttons */
.button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: 2px solid var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  color: var(--color-primary);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.button {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border-radius: 0.75rem;
  padding: 1.1rem 1.5rem;
}

.button i {
  font-size: 1.25rem;
}

.cta-button:hover {
  color: var(--color-bg);
  background-color: var(--color-primary);
}

/* ========================================== */
/* NAVIGATION                                */
/* ========================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    /* transform: translateY(-100%);  */
    transition: all 0.3s ease; 
    display: flex;
}

nav.scrolled {
    /* KEY CHANGE: Reset transform to bring the nav back into view */
    transform: translateY(0); 
    
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 5%;
}

.header {
    position: relative;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    display: flex;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo p {
  color: rgb(var(--background));
  font-weight: 500;
  transition: color 0.3s ease;
}

#nav-logo {
  width: 50px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgb(var(--background));
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

nav.scrolled .nav-links a,
nav.scrolled .logo p {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-secondary);
  transition: all 0.3s ease;
}

nav.scrolled .menu-toggle span {
    background: var(--color-primary);
}

/* ========================================== */
/* HERO SECTION (SLIDER)                     */
/* ========================================== */
.hero-slider {
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
  margin-top: 0;
}

.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2));
}

.hero-slider .swiper-slide .inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  text-align: center;
  z-index: 3;
}

.hero-slider .swiper-slide .inner .subtitle {
  font-size: 2.2rem;
  line-height: 1.2em;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
}

.hero-slider .swiper-slide .inner .title {
  font-size: 3.5rem;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  padding: 0 80px;
}

.hero-slider .swiper-slide .inner .btn {
  border: 1px solid #fff;
  padding: 14px 28px;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #fff;
  transition: all 0.2s ease;
  display: inline-block;
  border-radius: 4px;
}

.hero-slider .swiper-slide .inner .btn:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* Swiper Controls */
.swiper-button-prev,
.swiper-button-next {
  color: white !important;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  transition: color 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 30px !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--color-accent) !important;
}

.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  opacity: 0.7;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  margin: 0 4px !important;
  transition: all 0.2s;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent) !important;
  opacity: 1;
}

/* ========================================== */
/* INTRO SECTION (ABOUT)                     */
/* ========================================== */
.intro-section {
  padding: 1rem;
  text-align: center;
}

.intro-grid {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

.intro-content-left {
  margin-bottom: 2.5rem;
}

.hero-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
}

.hero-cta-wrapper {
  padding-top: 1.5rem;
}

.intro-content-right {
  margin-top: 2.5rem;
}

.summary-block {
  border-left: 4px solid var(--color-secondary);
  padding-left: 1rem;
  line-height: 1.625;
}

.summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
}

.summary-content {
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.graphic-block {
  width: 100%;
  height: 16rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid var(--color-secondary);
  background-color: var(--color-bg);
}

.graphic-number {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  font-size: 6rem;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.05;
}

.graphic-text {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ========================================== */
/* MARQUEE                                   */
/* ========================================== */
.marquee-container {
  display: flex;
  overflow: hidden;
  background-color: var(--color-primary);
  color: var(--color-bg);
  position: relative;
  padding: 1rem 0;
  white-space: nowrap;
  margin: 4rem 0 0 0;
}

.marquee-content {
  display: flex;
  animation: marquee var(--animation-duration) linear infinite;
}

.marquee-content.duplicated {
  min-width: 200%;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  min-width: 300px;
  color: var(--color-accent);
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--color-primary), rgba(var(--primary), 0));
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--color-primary), rgba(var(--primary), 0));
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-box {
  height: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #181818;
}

.marquee-box h2 {
  white-space: nowrap;
  text-transform: uppercase;
  color: #475747;
  font-size: 2em;
  font-weight: 300;
  flex-shrink: 0;
  padding: 0 5px;
  width: max-content;
  display: flex;
  align-items: center;
  animation: b-text-scroll 5s linear infinite;
}

@keyframes b-text-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ========================================== */
/* SERVICES SECTION                          */
/* ========================================== */
.services-section {
  padding: 1rem;
  background-color: var(--color-bg);
}

.section-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-align: center;
}

.services-grid {
  display: grid;
  padding: 1rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--container-color);
  padding: 40px 25px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--color-primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.service-icon svg {
  fill: var(--color-primary);
  transition: fill 0.3s ease-in-out;
}

.service-card:hover .service-icon svg {
  fill: var(--color-secondary);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.service-card p {
  font-size: 15px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.service-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* What We Do - Service List with Sticky Headings */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 100px;
}

.service-container {
  padding: 20px 0;
  border-bottom: 1px solid rgba(var(--secondary), 0.5);
  background-color: var(--color-bg);
}

.sticky-heading {
  position: sticky;
  height: fit-content;
  top: var(--sticky-top-position);
  z-index: 100;
  background-color: var(--color-bg);
  padding: 15px 0;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--color-accent);
}

.sticky-heading h3 {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-content {
  padding: 10px 0;
}

.service-content p {
  font-size: 16px;
  margin-bottom: 25px;
}

/* ========================================== */
/* ABOUT US SECTION                          */
/* ========================================== */
.section-aboutus {
  display: grid;
  width: 100%;
  text-align: left;
  gap: 10px;
  margin: 50px auto;
  padding: 30px;
  font-family: var(--font-inter);
  line-height: 1.6;
  max-width: 1100px;
}

.aboutus-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 5em;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 40px;
}

.aboutus-text {
  margin-bottom: 25px;
  font-size: 1.1em;
}

.aboutus-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.aboutus-button {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.aboutus-button:hover {
  background-color: var(--color-primary);
  color: #fff;
  cursor: pointer;
}

/* ========================================== */
/* IMAGE SLIDERS                             */
/* ========================================== */
.who-we-are-container {
  max-width: 100%;
  margin: 40px auto;
  font-family: var(--font-inter);
  padding: 20px 0;
  overflow: hidden;
}

.slider-title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 2rem;
  text-transform: uppercase;
}

.slider-wrapper {
  overflow: hidden;
}

.slider-track {
  display: flex;
  animation: scroll-left var(--animation-duration) linear infinite;
}

.slider-item {
  min-width: calc(100% / var(--items-to-show1));
  flex-shrink: 0;
  padding: 10px;
  box-sizing: border-box;
}

.slider-image {
  width: 100%;
  height: var(--image-height);
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.slider-image:hover {
  transform: translateY(-5px);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% * (6 / var(--items-to-show1)))); }
}

/* ========================================== */
/* INDEPENDENCE SECTION                      */
/* ========================================== */
.oui-independence-section {
  background-color: rgb(var(--background));
  padding: 80px 20px;
  color: var(--color-primary);
  font-family: var(--font-inter);
  display: flex;
  justify-content: center;
}

.content-box {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.heading-impact {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  line-height: 1.3;
  margin-bottom: 30px;
}

.heading-impact .highlight {
  color: var(--color-accent);
}

.secondary-message p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--color-secondary);
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* ========================================== */
/* MOVES SECTION                             */
/* ========================================== */
.moves-section {
  background-color: rgb(var(--background));
  padding: 100px 20px;
  font-family: var(--font-inter);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.moves-content-box {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 10px;
  text-align: left;
  z-index: 1;
}

.moves-heading-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  border-right: 2px solid rgba(var(--primary), 0.1);
}

.moves-heading {
  font-size: clamp(3rem, 6vw + 0.5rem, 5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.moves-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

.moves-text-content p {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 25px;
}

.cta-button-moves {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 18px 35px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(var(--primary), 0.15);
}

.cta-button-moves:hover {
  background-color: #ffd640;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(var(--primary), 0.25);
}

.button-icon,
.button-icon-moves {
  display: inline-flex;
}

.button-icon svg,
.button-icon-moves svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.cta-button:hover .button-icon svg,
.cta-button-moves:hover .button-icon-moves svg {
  transform: rotate(45deg) scale(1.1);
}

.moves-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.moves-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--primary), 0.05) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ========================================== */
/* TESTIMONIALS SECTION                      */
/* ========================================== */
.testimonial-section-whph {
  padding: 50px 0;
  background-color: var(--color-bg);
}

.slider-header {
  text-align: center;
  margin: 0 20px 50px;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
}

.slider-track-wrapper {
  overflow: hidden;
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.slider-track {
  display: flex;
  align-items: stretch;
  width: calc(100% * 2);
  animation: scroll-left var(--animation-duration) linear infinite;
}

.slide {
  flex-shrink: 0;
  width: var(--item-width);
  padding: var(--item-padding);
  box-sizing: border-box;
}

.slider-track-wrapper:hover .slider-track {
  animation-play-state: paused;
}

/* Testimonial Card */
.wrapper {
  width: 100%;
  min-height: 250px;
  height: 100%;
  background-color: var(--color-bg);
  border: 5px solid var(--color-primary);
  margin: 0;
  padding: 30px;
  position: relative;
  box-sizing: border-box;
  color: var(--color-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.wrapper:hover {
  border-color: var(--color-accent);
  transform: scale(1.02);
}

.wrapper::after,
.wrapper::before {
  content: "";
  position: absolute;
  font-family: "FontAwesome", var(--font-inter);
  font-size: 40px;
  color: var(--color-accent);
  background: var(--color-bg);
}

.wrapper::after {
  content: "\f10d";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  box-shadow: 10px 10px 0 var(--color-bg);
}

.wrapper::before {
  content: "\f10e";
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  box-shadow: -10px -10px 0 var(--color-bg);
}

.description {
  width: 100%;
  order: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #34495e;
  font-style: italic;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(var(--primary), 0.1);
  flex-grow: 1;
}

.title {
  width: 100%;
  order: 2;
  flex-shrink: 0;
}

.whph-title-style {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-primary);
  font-family: var(--font-inter);
}

.whph-title-style small {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: 5px;
  text-transform: none;
}

.border-radius {
  border-radius: 20px;
}

/* ========================================== */
/* CONTACT SECTION                           */
/* ========================================== */
.contact {
  padding-bottom: 0;
  display: flex;
  margin-top: 10px;
}

@keyframes backgroundZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.contact__container {
  position: relative;
  display: grid;
  grid-template-rows: max-content max-content max-content;
  row-gap: 1.5rem;
  background-image: url('https://images.unsplash.com/photo-1497215842964-222b430dc094?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTV8fHdvcmtzcGFjZXxlbnwwfHwwfHx8MA%3D%3D&fm=jpg&q=60&w=3000');
  background-size: cover;
  background-position: center;
  border-radius: 0.75rem;
  overflow: hidden;
  animation: none;
}

.contact__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--background), 0.75);
  z-index: 1;
}

.contact__container > * {
  position: relative;
  z-index: 2;
}

.contact__data,
.contact__mail {
  position: relative;
  border-radius: 0.75rem;
  z-index: 5;
  transition: background-color 0.4s;
  width: 90%;
  margin-inline: auto;
}

.contact__data {
  background-color: var(--container-color);
  padding: 2.5rem 1.5rem 2rem;
  border-bottom: 4px solid var(--color-accent);
}

.contact__data .section__title-2 {
  margin: 2rem auto 2rem;
  transform: translateX(0);
}

.contact__description-1 {
  color: var(--color-primary);
  font-weight: var(--font-medium);
  margin-bottom: 1.5rem;
}

.contact__description-2 {
  color: var(--color-primary);
  font-size: var(--small-font-size);
}

.contact__data .geometric-box {
  top: 1.5rem;
  left: 1.5rem;
}

.contact__mail {
  background-color: var(--color-primary);
  padding: 3rem 1.5rem 2.5rem;
  margin-top: 0;
}

.contact__title {
  color: var(--color-bg);
  font-size: var(--h2-font-size);
  margin-bottom: 2rem;
  text-align: initial;
}

.contact__form,
.contact__group {
  display: grid;
  row-gap: 1.25rem;
}

.contact__form {
  position: relative;
}

.contact__box {
  position: relative;
  width: 100%;
  height: 58px;
}

.contact__input,
.contact__button {
  font-family: var(--font-bai);
  font-size: var(--normal-font-size);
  outline: none;
  border: none;
  transition: background-color 0.4s;
}

.contact__input {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  border: 2.2px solid var(--color-secondary);
  border-radius: 0.75rem;
  color: var(--color-bg);
  padding: 0.5rem 1rem;
  font-weight: var(--font-medium);
  transition: border 0.4s;
}

.contact__input::placeholder {
  color: #fff;
  transition: opacity 0.4s;
}

.contact__input:focus {
  border: 2.2px solid var(--color-accent);
}

.contact__input:-webkit-autofill {
  transition: background-color 6000s, color 6000s;
}

.contact__label {
  position: absolute;
  top: 8px;
  left: 10px;
  color: #fff;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  background-color: var(--color-primary);
  padding: 8px;
  pointer-events: none;
  transition: top 0.4s, opacity 0.4s, background-color 0.4s;
  opacity: 0;
}

.contact__form .contact__area {
  height: 10rem;
}

.contact__area textarea {
  resize: none;
  padding-top: 1rem;
}

.contact__button {
  background-color: var(--color-accent);
  cursor: pointer;
  color: var(--color-primary);
  font-weight: var(--font-medium);
  border-radius: 0.75rem;
  padding: 1.1rem 1.5rem;
}

.contact__button:hover {
  background-color: hsl(45, 100%, 65%);
}

.contact__input:focus::placeholder {
  opacity: 0;
}

.contact__input:focus + .contact__label,
.contact__input:not(:placeholder-shown):not(:focus) + .contact__label {
  opacity: 1;
  top: -16px;
}

.contact__social {
  display: grid;
  row-gap: 1rem;
  background-color: transparent;
  padding-block: 0;
  text-align: initial;
  width: 90%;
  margin-inline: auto;
}

.contact__social-arrow {
  display: none;
}

.contact__social-data {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 1rem;
  background-color: var(--color-secondary);
  padding: 1rem;
  border-radius: 0.75rem;
}

.contact__social-description-1,
.contact__social-description-2 {
  color: var(--color-primary);
}

.contact__social-description-1 {
  font-size: var(--small-font-size);
  margin-bottom: 0.25rem;
}

.contact__social-description-2 {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
}

.contact__social-links {
  display: flex;
  justify-content: flex-end;
  column-gap: 0.75rem;
}

.contact__social-link {
  background-color: var(--color-primary);
  padding: 6px;
  color: var(--color-bg);
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.contact__social-link svg {
  width: 32px;
  height: 32px;
}

.contact__social-link svg path {
  fill: rgb(var(--background));
}

.contact__social-link:hover {
  background-color: var(--color-accent);
}

.contact__message {
  color: var(--color-primary);
  font-size: var(--small-font-size);
  position: absolute;
  bottom: -1.8rem;
  left: 1.5rem;
}

/* ========================================== */
/* ACCORDION                                 */
/* ========================================== */
.accordion-container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  padding: 3rem;
}

.accordion-container h2 {
  padding-bottom: 1.5rem;
}

.accordion-item {
  margin-bottom: 12px;
  background-color: var(--container-color);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: box-shadow var(--transition-speed);
}

.accordion-item.open {
  box-shadow: 0 10px 15px -3px rgba(var(--primary), 0.1), 0 4px 6px -4px rgba(var(--primary), 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 1.05em;
  font-weight: var(--font-semi-bold);
  cursor: pointer;
  color: var(--color-text-dark);
  background-color: var(--container-color);
  border-radius: 8px;
  transition: all var(--transition-speed);
}

.accordion-header:hover {
  background-color: rgba(var(--secondary), 0.08);
}

.accordion-header.active {
  color: var(--color-primary);
  border-radius: 8px 8px 0 0;
  background-color: rgb(247, 249, 252);
}

.accordion-icon {
  font-size: 1.2em;
  font-weight: 900;
  margin-left: 15px;
  color: var(--color-accent);
  transition: transform var(--transition-speed);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.accordion-content-wrapper {
  overflow: hidden;
  transition: max-height var(--transition-speed);
  max-height: 0;
}

.accordion-content {
  padding: 10px 20px 20px 20px;
  line-height: 1.5;
  color: var(--color-text-light);
  background-color: var(--container-color);
}

/* ========================================== */
/* FOOTER                                    */
/* ========================================== */
.footer {
  background-color: rgb(var(--background));
  color: var(--color-text-dark);
  padding: 64px 0 32px 0;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
}

#footer-logo {
  width: 50px;
}

#footer-logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-title {
  order: 2;
  flex-shrink: 0;
  color: var(--color-primary);
}

.footer-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e5e7eb;
}

.footer-col-logo {
  grid-column: span 2 / span 2;
}

.footer-col {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  line-height: 1.2;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.footer-logo-container .title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: left;
}

.footer-logo-container .address {
  font-size: 0.875rem;
  color: var(--color-secondary);
}

.footer-heading {
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 150ms ease-in-out;
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-logo {
  width: 40px;
  height: auto;
  fill: var(--color-primary);
}

.footer-bottom {
  padding-top: 24px;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #6b7280;
  row-gap: 12px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #4b5563;
  padding-top: 24px;
  line-height: 1.6;
}

.footer-disclaimer p {
  margin: 0;
}

.footer-copyright-link {
  color: var(--color-text-light);
  text-decoration: underline;
  transition: color 150ms ease-in-out;
}

.footer-copyright-link:hover {
  color: var(--color-accent);
}

/* ========================================== */
/* ANIMATIONS                                */
/* ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================== */
/* RESPONSIVE DESIGN                         */
/* ========================================== */

/* Tablet - 768px */
@media (min-width: 768px) {

  .hero-title {
    font-size: 4.5rem;
  }

  .intro-content-right {
    margin-top: 0;
  }

  .section-aboutus {
    grid-template-columns: 1.2fr 2fr;
    text-align: left;
  }

  .aboutus-title {
    text-align: left;
  }

  .marquee-item {
    font-size: 1.5rem;
    padding: 0 40px;
  }

  .contact__container {
    grid-template-columns: 35% 65%;
    grid-template-rows: initial;
    row-gap: 0;
    margin-inline: auto;
    animation: backgroundZoom 15s ease-out forwards;
  }

  .contact__container::before {
    background: rgba(var(--background), 0.5);
  }

  .contact__mail {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    padding: 4rem 2rem;
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 0.75rem 0.75rem 0;
  }

  .contact__group {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
  }

  .contact__button {
    width: max-content;
  }

  .contact__data {
    width: 100%;
    height: 300px;
    padding: 3rem 2rem 2.5rem;
    margin: 3rem 0 0 2rem;
    border-bottom: 6px solid var(--color-accent);
    border-radius: 0.75rem 0 0 0.75rem;
  }

  .contact__data .section__title-2 {
    /* transform: translateX(-2.5rem); */
    margin: 0 0 1.5rem;
  }

  .contact__data .geometric-box {
    top: 2rem;
  }

  .contact__social {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin: 0;
    padding: 0 2rem 2.5rem 2rem;
    align-self: end;
    width: 100%;
  }

  .contact__social-arrow {
    display: block;
    margin-left: 0;
    width: 32px;
  }

  .contact__social-data {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1rem;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }

  .contact__social-links {
    justify-content: flex-start;
  }

  .contact__message {
    bottom: -2rem;
    left: initial;
    color: var(--color-bg);
  }

  .footer-links-section {
    grid-template-columns: repeat(6, 1fr);
    gap: 48px;
  }

  .footer-col-logo {
    grid-column: span 2 / span 2;
  }

  .footer-copyright {
    flex-direction: row;
    align-items: center;
  }

  .whph-title-style {
    font-size: 18px;
  }
  
  .intro-paragraph {
    font-size: 2rem;
  }

  .services-section {
    padding: 3rem;
    background-color: var(--color-bg);
  }
}

/* Desktop Small - 900px */
@media (min-width: 900px) {
  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }

  .intro-content-left {
    position: sticky;
    top: 2.5rem;
    margin-bottom: 0;
  }

  .intro-section {
    text-align: left;
    padding: 4rem;
  }

  .accent-underline::after {
    transform-origin: left;
  }

  .service-list {
    display: block;
    gap: 0;
    padding-bottom: 50px;
  }

  .service-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(var(--secondary), 0.5);
  }

  .sticky-heading {
    position: sticky;
    top: var(--sticky-top-position);
    z-index: 100;
    padding: 0;
    margin-bottom: 0;
    border-bottom: none;
    text-align: right;
    background-color: transparent;
  }

  .sticky-heading h3 {
    font-size: 20px;
    display: block;
  }

  .service-content {
    padding: 0;
    border-left: 3px solid var(--color-accent);
    padding-left: 20px;
  }

  .moves-text-content {
    padding-left: 0;
  }

  .cta-button-moves {
    align-self: center;
    margin-top: 15px;
  }

  .moves-section::before,
  .moves-section::after {
    display: none;
  }
  .hide-on-sm {
    display: block;
  }

  .intro-paragraph {
    font-size: 2rem;
  }
}

/* Desktop Medium - 992px */
@media (max-width: 992px) {
  .hero-slider .swiper-slide .inner .title {
    font-size: 2.5rem;
  }

  .hero-slider .swiper-slide .inner .subtitle {
    font-size: 1.8rem;
  }

  :root {
    --items-to-show1: 3;
    --image-height: 200px;
  }

  .moves-content-box {
    grid-template-columns: 1fr;
    gap: 30px; /* Giảm khoảng cách */
    text-align: center;
    max-width: 700px; /* Giảm max-width trên mobile */
  }

  .moves-heading-box {
    padding-right: 0;
    border-right: none;
    justify-content: center;
  }
}

/* Desktop - 1024px */
@media (min-width: 1024px) {
  :root {
    --items-to-show2: 3;
    --animation-duration: 30s;
  }
}

/* Desktop Large - 1150px */
@media screen and (min-width: 1150px) {
  .contact__container {
    grid-template-columns: 400px 700px;
    padding-block: 3rem;
  }

  .contact__mail {
    padding: 6rem 4rem;
  }

  .contact__data {
    width: 390px;
    height: 400px;
    padding: 5rem 3rem 3.5rem;
    margin: 5rem 0 0 5rem;
    border-bottom: 8px solid var(--color-accent);
  }

  .contact__data .section__title-2 {
    /* transform: translateX(-4rem); */
  }

  .contact__social {
    padding: 0 5rem 5rem 5rem;
  }

  .contact__social-data {
    margin-top: 2rem;
    flex-direction: column;
    column-gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
  }

  .contact__social-link {
    padding: 0.5rem;
  }

  .contact__message {
    bottom: -2.5rem;
  }
}

/* Tablet & Desktop - 1200px */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop XL - 1400px */
@media (max-width: 1400px) {
  :root {
    --items-to-show2: 4;
  }
}

/* Mobile Large - 600px */
@media (max-width: 600px) {
  :root {
    --items-to-show1: 2;
    --image-height: 150px;
    --items-to-show2: 2;
    --animation-duration: 25s;
    --item-padding: 15px;
  }

  .wrapper {
    padding: 20px 15px 30px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: white;
    flex-direction: column;
    padding: 5rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: rgb(var(--primary));
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
    color: rgb(var(--primary));
  }

  .menu-toggle.active span:nth-child(1) {
    background-color: rgb(var(--primary));
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    background-color: rgb(var(--primary));
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    background-color: rgb(var(--primary));
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-title {
    font-size: 30px;
  }

  .hero-slider .swiper-slide .inner .title {
    font-size: 2rem;
  }

  .hero-slider .swiper-slide .inner .subtitle {
    font-size: 1.5rem;
  }

  .oui-independence-section {
    padding: 60px 15px;
  }
}

/* Mobile Small - 500px */
@media (max-width: 500px) {
  :root {
    --items-to-show2: 1;
  }

  .moves-section {
    padding: 60px 15px;
  }

  .cta-button-moves {
    width: 100%;
    box-sizing: border-box;
  }
}

.svg-wrapper {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.svg-wrapper .logo {
    animation: stroke 5s forwards;
    stroke-width: 2;
}

@keyframes stroke {
    0% {
        fill: rgba(0, 0, 0, 0); 
        stroke: rgba(54, 95, 160, 1);
        stroke-dashoffset: 25%; 
        stroke-dasharray: 0 50%; 
        stroke-width: 2;
    }
    70% {
        fill: rgba(0, 0, 0, 0); 
        stroke: rgba(54, 95, 160, 1); 
    }
    80% {
        fill: rgba(0, 0, 0, 0); 
        stroke: rgba(54, 95, 160, 1); 
        stroke-width: 3;
    }
    100% {
        stroke: rgba(54, 95, 160, 0); 
        stroke-dashoffset: -25%; 
        stroke-dasharray: 50% 0; 
        stroke-width: 0;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.svg-wrapper .logo-name {
    opacity: 0;
    animation: fade-in 1s forwards;
    animation-delay: 3s; 
}

.svg-wrapper .sub-logo-name {
    opacity: 0; 
    animation: fade-in 1s forwards; 
    animation-delay: 4s; 
}

/* --- New Keyframes for the Paragraph --- */
@keyframes slide-up-and-fade {
    0% {
        opacity: 0;
        /* Start the text 20 pixels below its final resting position */
        transform: translateY(20px); 
    }
    100% {
        opacity: 1;
        /* End at its final position */
        transform: translateY(0); 
    }
}

/* --- Applying the Animation and Delay --- */
.intro-paragraph {
    opacity: 0; /* Ensures the text is hidden before the animation starts */
    text-align: center;
    /* Apply the animation: 
       - 1s duration
       - 5s delay (Starts after the 5s SVG stroke animation completes)
       - forwards (Stays at the final state) */
    animation: slide-up-and-fade 1s ease-out forwards;
    animation-delay: 5s; 
    
    /* Add styling for text appearance (optional) */
    max-width: 80vw;
    margin: 20px auto; 
    padding: 0 15px;
    font-family: var(--font-inter);
    line-height: 1.6;
}

/* --- Profile Card Styling (Desktop First) --- */
.ceo-profile-card {
    /* Base styles for the card */
    display: flex;
    gap: 2rem;
    max-width: 800px;
    padding: 30px;
    margin: 20px auto;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    align-items: flex-start; /* Aligns content to the top */
}

/* --- Image Styling --- */
.ceo-profile-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%; /* Circular image */
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid #0056b3; /* Professional blue accent */
    transition: transform 0.3s ease; /* Little hover animation */
}

.ceo-profile-card img:hover {
    transform: scale(1.05);
}

/* --- Text Content Styling --- */
.content-wrapper {
    flex-grow: 1;
}

.summary-title {
    font-size: 1.5rem;
    color: #0056b3; /* Bold and professional blue */
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.summary-content {
    font-size: 1rem;
    color: #4b5563; /* Subtle text color */
    line-height: 1.6;
    margin-top: 0;
    text-align: left;
}


/* --- RESPONSIVENESS (Mobile View) --- */
@media (max-width: 650px) {
    .ceo-profile-card {
        /* Switch to vertical layout on small screens */
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 1.5rem; /* Reduced gap */
    }

    .ceo-profile-card img {
        /* Center the image */
        margin: 0 auto;
    }
    
    .ceo-profile-card .summary-title, 
    .ceo-profile-card .summary-content {
        /* Center the text */
        text-align: center;
    }

    .summary-title {
        font-size: 1.3rem; /* Slightly smaller title on mobile */
    }
}

.lg-word-break {
    /* KEY: Change the span from inline (default) to block.
       Block elements automatically start on a new line. */
    display: block; 
    
    /* Optional: Adjust spacing between lines if needed */
    line-height: 1.2; 
}

/* Responsive Container */
        .tc-main-container {
            max-width: 960px;
            margin: 40px auto 40px auto; /* Overlap the clipped header by 50px */
            padding: 32px;
            background-color: var(--container-color);
            box-shadow: var(--shadow-light);
            border-radius: 1rem; /* 16px */
            position: relative;
            z-index: 10; /* Ensure container is above the clipped banner */
            
            /* Initial animation for the whole card, delayed after the banner */
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }
        
        @media (max-width: 768px) {
            .tc-main-container {
                margin: 30px 10px 20px 10px; /* Less overlap and margin on mobile */
                padding: 20px;
            }
        }

        /* Header Styling with specific animations */
        .tc-header {
            text-align: center;
            padding-bottom: 24px;
            border-bottom: 2px solid var(--color-primary); /* Use primary color for divider */
            margin-bottom: 32px;
        }

        .tc-header h1 {
            font-size: var(--h1-font-size);
            font-weight: var(--font-bold);
            color: var(--color-text-dark);
            margin-bottom: 8px;
            
            /* Animation applied */
            opacity: 0;
            animation: fadeInLeft 0.6s ease-out 0.8s forwards; /* Start after container loads */
        }

        .tc-header p {
            font-size: var(--normal-font-size);
            color: var(--color-text-light);
            
            /* Animation applied */
            opacity: 0;
            animation: fadeInRight 0.6s ease-out 0.9s forwards;
        }

        /* Section Styling */
        .container-section {
            padding: 2rem 0;
            border-bottom: 1px solid rgba(var(--primary), 0.3); /* Subtle divider based on primary color */
        }
        .container-section:last-child {
            border-bottom: none;
        }

        /* Section Header animation (fadeInLeft) with stagger */
        .container-section h2 {
            font-size: var(--h2-font-size);
            font-weight: var(--font-semi-bold);
            color: var(--color-primary);
            margin-bottom: 12px;
            
            /* Base animation for all section titles */
            opacity: 0;
            animation: fadeInLeft 0.5s ease-out forwards;
        }

        /* Section Content animation (fadeInUp) with stagger */
        .container-section p, .tc-list {
            font-size: var(--normal-font-size);
            color: var(--color-text-dark);
            margin-bottom: 16px;
            
            /* Base animation for all section content */
            opacity: 0;
            animation: fadeInUp 0.5s ease-out forwards;
        }

        /* ---------------------------------------------------------------------- */
        /* Pure CSS Staggered Delay Logic for 8 Sections (FIXED INDEXING) */
        /* ---------------------------------------------------------------------- */
        /* NOTE: Indexing starts at 2 because the <header> is the first child (nth-child(1)). */
        
        /* H2s (Start at 1.0s + index * 0.2s) */
        .container-section:nth-child(2) h2 { animation-delay: 1.2s; } /* Section 1 */
        .container-section:nth-child(3) h2 { animation-delay: 1.4s; } /* Section 2 */
        .container-section:nth-child(4) h2 { animation-delay: 1.6s; } /* Section 3 */
        .container-section:nth-child(5) h2 { animation-delay: 1.8s; } /* Section 4 */
        .container-section:nth-child(6) h2 { animation-delay: 2.0s; } /* Section 5 */
        .container-section:nth-child(7) h2 { animation-delay: 2.2s; } /* Section 6 */
        .container-section:nth-child(8) h2 { animation-delay: 2.4s; } /* Section 7 */
        .container-section:nth-child(9) h2 { animation-delay: 2.6s; } /* Section 8 */
        .container-section:nth-child(10) h2 { animation-delay: 2.8s; } /* Section 9 */

        /* Content (Start at 1.1s + index * 0.2s) */
        .container-section:nth-child(2) p, .container-section:nth-child(2) .tc-list { animation-delay: 1.3s; } /* Section 1 */
        .container-section:nth-child(3) p, .container-section:nth-child(3) .tc-list { animation-delay: 1.5s; } /* Section 2 */
        .container-section:nth-child(4) p, .container-section:nth-child(4) .tc-list { animation-delay: 1.7s; } /* Section 3 */
        .container-section:nth-child(5) p, .container-section:nth-child(5) .tc-list { animation-delay: 1.9s; } /* Section 4 */
        .container-section:nth-child(6) p, .container-section:nth-child(6) .tc-list { animation-delay: 2.1s; } /* Section 5 */
        .container-section:nth-child(7) p, .container-section:nth-child(7) .tc-list { animation-delay: 2.3s; } /* Section 6 */
        .container-section:nth-child(8) p, .container-section:nth-child(8) .tc-list { animation-delay: 2.5s; } /* Section 7 */
        .container-section:nth-child(9) p, .container-section:nth-child(9) .tc-list { animation-delay: 2.7s; } /* Section 8 */
        .container-section:nth-child(10) p, .container-section:nth-child(10) .tc-list { animation-delay: 2.9s; } /* Section 9 */


        /* List Styling */
        .tc-list {
            margin-left: 20px;
            padding-left: 0;
            list-style-type: disc;
            color: var(--color-text-dark);
        }

        .tc-list li {
            margin-bottom: 8px;
        }

        /* Footer Styling */
        .tc-footer {
            padding-top: 32px;
            text-align: center;
            color: var(--color-text-light);
            
            /* Final element animation - Starts after the last section content (2.7s + 0.1s) */
            opacity: 0;
            animation: fadeInUp 0.6s ease-out 2.8s forwards;
        }
        
        .tc-footer-title {
            font-size: var(--h3-font-size);
            font-weight: var(--font-semi-bold);
            color: var(--color-text-dark);
            margin-bottom: 8px;
        }

        /* Link Styling with Transition */
        .tc-footer-link {
            font-weight: var(--font-medium);
            color: var(--color-primary);
            text-decoration: none;
            transition: color var(--transition-speed) ease;
        }
        
        .tc-footer-link:hover {
            color: var(--color-secondary);
            text-decoration: underline;
        }