* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark: #141414;
  --light: #ffffff;
  --muted: #667085;
  --accent: #a84343;
  --accent-dark: #7e2f2f;
  --bg: #f7f3ee;
  --card: #fffaf5;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.7;
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--light);
  border-bottom: 1px solid #f0e4da;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-img {
  height: 45px;
  width: 45px;
  object-fit: contain;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: center;
  color: var(--light);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: slideShow 16s infinite, pulse 8s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.hero-slide:hover {
  transform: scale(1.05);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 4s;
}

.hero-slide:nth-child(3) {
  animation-delay: 8s;
}

.hero-slide:nth-child(4) {
  animation-delay: 12s;
}

@keyframes slideShow {
  0%, 20% {
    opacity: 1;
    transform: scale(1);
  }
  25%, 100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-slide {
  animation: slideShow 16s infinite, pulse 8s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(110, 47, 47, 0.7), rgba(199, 115, 99, 0.6));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero--no-image {
  background: linear-gradient(135deg, #6e2f2f, #c77363);
}

.hero__content {
  padding: 90px 20px;
  max-width: 700px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: #f6d8cc;
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.3rem;
}

h1 {
  font-size: 3.5rem;
  max-width: 640px;
  font-weight: 700;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  display: inline-block;
  line-height: 1.2;
  max-width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 1.8rem;
    white-space: normal;
    max-width: 100%;
    line-height: 1.3;
  }
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-top: 16px;
  color: #f6d8cc;
  font-weight: 500;
  max-width: 640px;
}

.lead {
  margin-top: 24px;
  max-width: 560px;
  font-size: 1.3rem;
  color: #f8f2ed;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  border: 1px solid var(--accent);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--light);
  border-color: #f5d8cc;
}

.hero__stats {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__stats div {
  display: grid;
  gap: 4px;
}

.hero__stats strong {
  font-size: 1.6rem;
}

.section {
  padding: 80px 0;
  scroll-margin-top: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
  z-index: -1;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.section.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
}

.section--light {
  background: linear-gradient(135deg, var(--bg) 0%, #f5e6d3 50%, #f8f0e8 100%);
  position: relative;
}

.section--light::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 67, 67, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(30px) rotate(5deg);
  }
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
}

.section__header p {
  color: var(--muted);
  margin-top: 8px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pill-group span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--card);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}

.info-card,
.branch-card,
.profile-card,
.contact-form,
.quote-card {
  background: var(--light);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before,
.branch-card::before,
.profile-card::before,
.contact-form::before,
.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.info-card.visible,
.branch-card.visible,
.profile-card.visible,
.contact-form.visible,
.quote-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.info-card.visible::before,
.branch-card.visible::before,
.profile-card.visible::before,
.contact-form.visible::before,
.quote-card.visible::before {
  animation: slideShine 0.6s ease forwards;
}

@keyframes slideShine {
  to {
    left: 100%;
  }
}

.info-card:hover,
.branch-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 70px rgba(20, 20, 20, 0.25);
}

.branch-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(20, 20, 20, 0.1);
  border: 1px solid rgba(168, 67, 67, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.branch-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.15);
  border-color: rgba(168, 67, 67, 0.2);
}

.branch-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transition: height 0.3s ease;
  z-index: 10;
}

.branch-card--hulu {
  border-top: 5px solid #e74c3c;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.branch-card--hulu::before {
  background: #e74c3c;
}

.branch-card--hulu h3 {
  color: #c0392b;
}

.branch-card--setapak {
  border-top: 5px solid #3498db;
  background: linear-gradient(135deg, #ecf0f9 0%, #e3e9f8 100%);
}

.branch-card--setapak::before {
  background: #3498db;
}

.branch-card--setapak h3 {
  color: #2980b9;
}

.branch-card--tekali {
  border-top: 5px solid #27ae60;
  background: linear-gradient(135deg, #f0fff4 0%, #e8f8f5 100%);
}

.branch-card--tekali::before {
  background: #27ae60;
}

.branch-card--tekali h3 {
  color: #229954;
}

.branch-card--serdang {
  border-top: 5px solid #f39c12;
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
}

.branch-card--serdang::before {
  background: #f39c12;
}

.branch-card--serdang h3 {
  color: #d68910;
}

.branch-card__image {
  width: 140px;
  min-width: 140px;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 8px 0 0 8px;
  position: relative;
  overflow: hidden;
}

.branch-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 67, 67, 0.2), rgba(0, 0, 0, 0.1));
  transition: opacity 0.3s ease;
}

.branch-card:hover .branch-card__image::after {
  opacity: 0.6;
}

.branch-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.branch-card h3 {
  color: #141414;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.branch-card--hulu h3 {
  color: #a84343;
}

.branch-card--setapak h3 {
  color: #2d5aa0;
}

.branch-card--tekali h3 {
  color: #28a745;
}

.branch-card--serdang h3 {
  color: #ff6b35;
}

.branch-card--hulu .branch-card__image {
  background-image: url('../images/Hulu-Langat.webp');
  background-color: #a84343;
}

.branch-card--setapak .branch-card__image {
  background-image: url('../images/Setapak.webp');
  background-color: #2d5aa0;
}

.branch-card--tekali .branch-card__image {
  background-image: url('../images/Sungai-Tekali.webp');
  background-color: #28a745;
}

.branch-card--serdang .branch-card__image {
  background-image: url('../images/Serdang.webp');
  background-color: #ff6b35;
}

.branch-card p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 8px;
}

.branch-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  font-size: 0.95rem;
}

.branch-card--hulu .branch-link {
  color: #a84343;
}

.branch-card--setapak .branch-link {
  color: #2d5aa0;
}

.branch-card--tekali .branch-link {
  color: #28a745;
}

.branch-card--serdang .branch-link {
  color: #ff6b35;
}

.branch-link:hover {
  text-decoration: underline;
  transform: translateX(5px);
}

.branch-card--hulu .branch-link:hover {
  color: #7e2f2f;
}

.branch-card--setapak .branch-link:hover {
  color: #1e3d6f;
}

.branch-card--tekali .branch-link:hover {
  color: #1e7e34;
}

.branch-card--serdang .branch-link:hover {
  color: #cc5529;
}

.info-card ul {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cards-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.profile-card {
  display: grid;
  gap: 12px;
}

.profile-card {
  background: linear-gradient(135deg, #fff5f8 0%, #ffeef7 100%);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(168, 67, 67, 0.1);
  text-align: center;
}

.card {
  overflow: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(135deg, #fdfaf7 0%, #fdf5ef 100%);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 12px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Distinct color themes for each card */
.card:nth-child(1) { 
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 5px solid #e74c3c;
  transition-delay: 0.1s; 
  animation-delay: 0.1s; 
}
.card:nth-child(1) h3 { color: #c0392b; }

.card:nth-child(2) { 
  background: linear-gradient(135deg, #ecf0f9 0%, #e3e9f8 100%);
  border-left: 5px solid #3498db;
  transition-delay: 0.2s; 
  animation-delay: 0.2s; 
}
.card:nth-child(2) h3 { color: #2980b9; }

.card:nth-child(3) { 
  background: linear-gradient(135deg, #f0fff4 0%, #e8f8f5 100%);
  border-left: 5px solid #27ae60;
  transition-delay: 0.3s; 
  animation-delay: 0.3s; 
}
.card:nth-child(3) h3 { color: #229954; }

.card:nth-child(4) { 
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
  border-left: 5px solid #f39c12;
  transition-delay: 0.4s; 
  animation-delay: 0.4s; 
}
.card:nth-child(4) h3 { color: #d68910; }

.card:nth-child(5) { 
  background: linear-gradient(135deg, #f5e6ff 0%, #f0d9ff 100%);
  border-left: 5px solid #9b59b6;
  transition-delay: 0.5s; 
  animation-delay: 0.5s; 
}
.card:nth-child(5) h3 { color: #7d3c98; }

.card:nth-child(6) { 
  background: linear-gradient(135deg, #ffe6f0 0%, #ffd9e6 100%);
  border-left: 5px solid #e91e63;
  transition-delay: 0.6s; 
  animation-delay: 0.6s; 
}
.card:nth-child(6) h3 { color: #c2185b; }

.card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card__media {
  height: 180px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f4d8cc, #e6b8b8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  position: relative;
}

.card__media:nth-child(1) { transition-delay: 0.1s; }
.card__media:nth-child(2) { transition-delay: 0.2s; }
.card__media:nth-child(3) { transition-delay: 0.3s; }
.card__media:nth-child(4) { transition-delay: 0.4s; }
.card__media:nth-child(5) { transition-delay: 0.5s; }
.card__media:nth-child(6) { transition-delay: 0.6s; }

.card__media.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: zoomIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-fill-mode: forwards;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card:nth-child(1):hover .card__media {
  animation: slideZoom 0.4s ease forwards;
  box-shadow: 0 25px 60px rgba(20, 20, 20, 0.5);
}

.card:nth-child(2):hover .card__media {
  animation: bounceZoom 0.4s ease forwards;
  box-shadow: 0 25px 60px rgba(20, 20, 20, 0.5);
}

.card:nth-child(3):hover .card__media {
  animation: spinZoom 0.4s ease forwards;
  box-shadow: 0 25px 60px rgba(20, 20, 20, 0.5);
}

.card:nth-child(4):hover .card__media {
  animation: slideZoom 0.4s ease forwards reverse;
  box-shadow: 0 25px 60px rgba(20, 20, 20, 0.5);
}

.card:nth-child(5):hover .card__media {
  animation: bounceZoom 0.4s ease forwards reverse;
  box-shadow: 0 25px 60px rgba(20, 20, 20, 0.5);
}

.card:nth-child(6):hover .card__media {
  animation: spinZoom 0.4s ease forwards reverse;
  box-shadow: 0 25px 60px rgba(20, 20, 20, 0.5);
}

@keyframes slideZoom {
  0% {
    transform: scale(1) translateX(-10px);
  }
  100% {
    transform: scale(1.35) translateX(0px);
  }
}

@keyframes bounceZoom {
  0% {
    transform: scale(1) translateY(10px);
  }
  60% {
    transform: scale(1.4) translateY(-5px);
  }
  100% {
    transform: scale(1.35);
  }
}

@keyframes spinZoom {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1.35) rotate(10deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-card__media {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4d8cc, #d9a1a1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.profile-card__media.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.profile-card:nth-child(1) .profile-card__media {
  transition-delay: 0.2s;
}

.profile-card:nth-child(2) .profile-card__media {
  transition-delay: 0.4s;
}

.profile-card:hover .profile-card__media {
  transform: translateY(-8px) scale(1.25) rotate(5deg);
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.3);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.quote-card {
  margin-top: 32px;
  background: linear-gradient(135deg, #fff0e6 0%, #ffe6d5 100%);
  border-left: 5px solid var(--accent);
}

.quote-card span {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
}

.contact-info {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 600;
  color: var(--dark);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid #e0d6cf;
  font-family: inherit;
  background: linear-gradient(135deg, #fffaf5 0%, #fff5ed 100%);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(168, 67, 67, 0.1);
  outline: none;
}

.site-footer {
  background: #1f1b18;
  color: var(--light);
  padding: 40px 0;
}

.site-footer .container {
  display: grid;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #f2d3c8;
}

.footer-note {
  color: #c9b2a8;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 20px;
    top: 70px;
    background: var(--light);
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .cards-grid,
  .cards-grid--two {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.6rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
}

/* Operations Section Styling */
.section--operations {
  background: linear-gradient(135deg, #f9f3f0 0%, #f0e6d3 50%, #f5e6d3 100%);
  position: relative;
  overflow: hidden;
}

.section--operations::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(168, 67, 67, 0.05);
  border-radius: 50%;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.section--operations::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 67, 67, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 10s ease-in-out infinite reverse;
}

.section--operations .container {
  position: relative;
  z-index: 1;
}

/* Leadership Section Styling */
.section--leadership {
  background: linear-gradient(135deg, #f5e8f0 0%, #f0e1f0 50%, #efe0f5 100%);
  position: relative;
  overflow: hidden;
}

.section--leadership::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(110, 47, 47, 0.04);
  border-radius: 50%;
  z-index: 0;
  animation: float 9s ease-in-out infinite;
}

.section--leadership::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(110, 47, 47, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 7s ease-in-out infinite reverse;
}

.section--leadership .container {
  position: relative;
  z-index: 1;
}

/* Contact Section Styling */
.section--contact {
  background: linear-gradient(135deg, #f0f5ff 0%, #f0e6f5 50%, #ebe6f5 100%);
  position: relative;
  overflow: hidden;
}

.section--contact::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 90, 160, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.section--contact::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 90, 160, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 10s ease-in-out infinite reverse;
}

.section--contact .container {
  position: relative;
  z-index: 1;
}

/* ===== ENHANCED VISUAL IMPROVEMENTS ===== */

/* Enhanced Button Styling */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--light);
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(168, 67, 67, 0.25);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.3s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(168, 67, 67, 0.35);
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.btn:hover::before,
.btn:focus::before {
  left: 100%;
}

.btn--ghost {
  background: transparent;
  border: 2px solid var(--light);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn--ghost:hover,
.btn--ghost:focus {
  background: var(--light);
  color: var(--accent);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Enhanced Card Styling */
.card {
  border: 1px solid rgba(168, 67, 67, 0.1);
  box-shadow: 0 6px 20px rgba(20, 20, 20, 0.08);
  position: relative;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(168, 67, 67, 0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover::after {
  transform: scaleX(1);
}

.card:hover {
  border-color: rgba(168, 67, 67, 0.2);
  box-shadow: 0 12px 35px rgba(20, 20, 20, 0.12);
}

/* Enhanced Branch Card Styling */
.branch-card {
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(20, 20, 20, 0.1);
  border: 1px solid rgba(168, 67, 67, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.branch-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.15);
  border-color: rgba(168, 67, 67, 0.2);
}

/* Enhanced Branch Card Image with Overlay */
.branch-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 67, 67, 0.15), rgba(0, 0, 0, 0.05));
  transition: opacity 0.3s ease;
  opacity: 0;
}

.branch-card:hover .branch-card__image::after {
  opacity: 1;
}

/* Enhanced Section Headers */
.section h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 40px;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section h2:hover::after {
  width: 120px;
}

/* Enhanced Section Dividers */
.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 67, 67, 0.2), transparent);
}

/* Enhanced Text Styling */
h2 {
  color: var(--dark);
  letter-spacing: -0.02em;
}

h3 {
  color: var(--dark);
  letter-spacing: -0.01em;
}

/* Enhanced Link Styling */
.branch-link,
a[target="_blank"] {
  position: relative;
  color: var(--accent);
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.branch-link::after,
a[target="_blank"]::after {
  content: "→";
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.branch-link:hover,
a[target="_blank"]:hover {
  color: var(--accent-dark);
}

.branch-link:hover::after,
a[target="_blank"]:hover::after {
  transform: translateX(4px);
}

/* Enhanced Pills */
.pill-group span {
  border: 1px solid rgba(168, 67, 67, 0.1);
  transition: all 0.3s ease;
  cursor: default;
}

.pill-group span:hover {
  background: var(--light);
  border-color: var(--accent);
  box-shadow: 0 6px 15px rgba(168, 67, 67, 0.15);
  transform: translateY(-2px);
}

/* Enhanced Form Styling */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border: 1px solid rgba(168, 67, 67, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168, 67, 67, 0.1);
  transform: translateY(-2px);
}

/* Enhanced Profile Cards */
.profile-card {
  text-align: center;
}

.profile-card img {
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.profile-card:hover img {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 12px 30px rgba(168, 67, 67, 0.2);
}

/* Animation for scroll reveals */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card.visible {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Enhanced Hero Stats */
.hero__stats div {
  padding: 12px 0;
  border-bottom: 2px solid rgba(246, 216, 204, 0.3);
  transition: all 0.3s ease;
}

.hero__stats div:last-child {
  border-bottom: none;
}

.hero__stats div:hover {
  border-bottom-color: rgba(246, 216, 204, 0.8);
  padding-left: 12px;
}

/* Enhanced Shadow Depths */
.shadow-sm {
  box-shadow: 0 2px 8px rgba(20, 20, 20, 0.06);
}

.shadow-md {
  box-shadow: 0 6px 20px rgba(20, 20, 20, 0.1);
}

.shadow-lg {
  box-shadow: 0 12px 35px rgba(20, 20, 20, 0.15);
}

.shadow-xl {
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.2);
}

/* ===== ADDITIONAL COLOR ENHANCEMENTS ===== */

/* Colored Info Cards */
.info-card {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
  border-left: 4px solid #f39c12;
}

.info-card h4 {
  color: #d68910;
}

/* Colored Profile Cards */
.profile-card {
  background: linear-gradient(135deg, #ecf0f9 0%, #e3e9f8 100%);
  border-left: 4px solid #3498db;
}

.profile-card h3 {
  color: #2980b9;
}

/* Quote Card Styling */
.quote-card {
  background: linear-gradient(135deg, #f5e6ff 0%, #f0d9ff 100%);
  border-left: 4px solid #9b59b6;
}

.quote-card p {
  color: #7d3c98;
  font-style: italic;
}

/* Contact Form Enhanced */
.contact-form {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 4px solid #e74c3c;
}

.contact-form h3 {
  color: #c0392b;
}

/* Section Headers with Colors */
.section--light h2 {
  color: #141414;
}

.section--operations h2 {
  color: #c0392b;
}

.section--operations h2::after {
  background: linear-gradient(90deg, #e74c3c, transparent);
}

.section--leadership h2 {
  color: #2980b9;
}

.section--leadership h2::after {
  background: linear-gradient(90deg, #3498db, transparent);
}

.section--branches h2 {
  color: #d68910;
}

.section--branches h2::after {
  background: linear-gradient(90deg, #f39c12, transparent);
}

.section--contact h2 {
  color: #c0392b;
}

.section--contact h2::after {
  background: linear-gradient(90deg, #e74c3c, transparent);
}
