
/* Animated Section Headers */
.section-header {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  color: #111;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.section-header.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Underline Accent */
.section-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #ff4d4d, #ff9900);
  border-radius: 2px;
  transition: width 0.8s ease-out 0.2s;
}

.section-header.appear::after {
  width: 100%;
}

/* Scroll-linked gradient divider */
.gradient-divider {
  width: 0%;
  height: 4px;
  margin: 3rem 0;
  background: linear-gradient(90deg, #ff4d4d, #ff9900);
  border-radius: 2px;
  opacity: 0;
  transition: width 1s ease-out, opacity 0.6s ease-out;
}

.gradient-divider.appear {
  width: 100%;
  opacity: 1;
}
/* Parallax Hero */
.parallax-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* fallback */
}

.parallax-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* latest change */
/* Premium Heading Styling */
h1, h2, h3, h4, h5, h6 {
  color: #111 !important;          /* Deep charcoal for maximum clarity */
  font-weight: 800;                /* Strong, confident typography */
  letter-spacing: -0.5px;          /* Modern, tighter spacing */
  line-height: 1.2;                /* Clean vertical rhythm */
  margin-bottom: 1rem;             /* Consistent spacing */
}

/* Hero / Main Page Title */
h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

/* Section Headers (used with .section-header animation) */
.section-header {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Animated reveal */
.section-header.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient underline reveal */
.section-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #ff4d4d, #ff9900);
  border-radius: 2px;
  transition: width 0.8s ease-out 0.2s;
}

.section-header.appear::after {
  width: 100%;
}

/* Paragraphs and body text */
p, li, address {
  color: #333 !important;
  font-size: 1.05rem;
  line-height: 1.6;
}

.gradient-divider {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #111, #444, #111);
  border-radius: 3px;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gradient-divider.appear {
  opacity: 1;
  transform: scaleX(1);
}

