/* Complete redesign with modern, sophisticated styling */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #ff6b35;
  --secondary-color: #8b1538;
  --accent-color: #2d3142;
  --success-color: #4caf50;
  --light-bg: #fafafa;
  --white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-muted: #9e9e9e;
  --border-color: #e5e5e5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.display-3 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.display-4 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

.display-5 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Navigation */
.navbar {
  padding: 1.5rem 0;
  background: var(--white) !important;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.navbar-brand img {
  height: 45px;
  transition: all 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary) !important;
  padding: 0.5rem 1.25rem !important;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3142 100%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("public/hero.jpg") center / cover;
  opacity: 0.15;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(139, 21, 56, 0.15) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-weight: 900;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-section .lead {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  line-height: 1.8;
}

/* Hero carousel slides */
.hero-carousel .carousel-item {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: #000 center/cover no-repeat;
  background-image: var(--hero-bg);
  position: relative;
}

.hero-carousel .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  z-index: 0;
}

.hero-carousel .container,
.hero-carousel .row,
.hero-carousel .col-lg-8 { position: relative; z-index: 1; }

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%;
  background-color: rgba(255,255,255,0.7);
}

.hero-carousel .carousel-indicators .active { background-color: #fff; }

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }

/* Text animations for hero */
@keyframes fadeUpHero {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.anim-fade-up { animation: fadeUpHero 700ms ease both; }
.anim-delay-1 { animation-delay: 200ms; }
.anim-delay-2 { animation-delay: 400ms; }

/* Buttons */
.btn {
  padding: 0.875rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  letter-spacing: 0.02em;
  text-transform: none;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.btn-light {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 1.125rem 3rem;
  font-size: 1.1rem;
}

/* Sections */
section {
  padding: 6rem 0;
}

.bg-light {
  background: var(--light-bg) !important;
}

/* Intro Section */
.intro-section h2 {
  margin-bottom: 1.5rem;
}

.intro-section img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.intro-section img:hover {
  transform: scale(1.02);
}

/* Stats Section */
.stat-card {
  padding: 3rem 2rem;
  transition: transform 0.3s ease;
  background: var(--white);
  border-radius: 15px;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 4rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card .stat-number {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  color: inherit; /* actual color set inline or via utility */
}

.stat-underline {
  width: 80px;
  height: 4px;
  margin: 0 auto 1rem;
  border-radius: 2px;
}

/* Stat card color variants */
.stat-card.stat-blue .stat-number { color: #1e88e5; }
.stat-card.stat-blue .stat-underline { background: #1e88e5; }

.stat-card.stat-green .stat-number { color: #2e7d32; }
.stat-card.stat-green .stat-underline { background: #2e7d32; }

.stat-card.stat-amber .stat-number { color: #f59e0b; }
.stat-card.stat-amber .stat-underline { background: #f59e0b; }

.stat-card.stat-red .stat-number { color: #e53935; }
.stat-card.stat-red .stat-underline { background: #e53935; }

/* Sustainability overview image styling */
.sustainability-img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Policy page layout */
.policy-wrap { background: var(--white); }

.policy-sidebar .policy-toc {
  border-radius: 14px;
}

.policy-toc .policy-toc-link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 8px;
  position: relative;
}

.policy-toc .policy-toc-link:hover {
  color: var(--text-primary);
  background: var(--light-bg);
  border-left-color: var(--primary-color);
}

.policy-toc .policy-toc-link.active {
  color: var(--primary-color);
  font-weight: 700;
  background: rgba(255, 107, 53, 0.08); /* uses --primary-color tone */
  border-left-color: var(--primary-color);
}

.policy-toc .policy-toc-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
}

/* Icon mode: replace bullets with icons */
.policy-toc .policy-toc-link.with-icon {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-left: 0.75rem; /* balanced with border-left */
}
.policy-toc .policy-toc-link.with-icon::before { display: none; }
.policy-toc .policy-toc-link.with-icon i { color: var(--text-secondary); transition: color 150ms ease; }
.policy-toc .policy-toc-link.with-icon:hover i { color: var(--text-primary); }
.policy-toc .policy-toc-link.with-icon.active i { color: var(--primary-color); }

.policy-content {
  border-radius: 16px;
}

.policy-content .policy-section {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px dashed var(--border-color);
  scroll-margin-top: 110px; /* offset for sticky header/nav */
}

/* Single-section mode */
.policy-content.single .policy-section { display: none; opacity: 0; transition: opacity 200ms ease; }
.policy-content.single .policy-section.active { display: block; opacity: 1; }

.policy-content .policy-section:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

/* Mobile: show all policy sections (disable single-section view) */
@media (max-width: 991.98px) {
  .policy-content.single .policy-section {
    display: block !important;
    opacity: 1 !important;
  }
}

.policy-content h2 { letter-spacing: -0.02em; }
.policy-content h3 { font-weight: 700; margin-bottom: 0.75rem; }
.policy-content ul { padding-left: 1.2rem; }
.policy-content li { margin-bottom: 0.35rem; }

/* Callouts (bordered inset with left accent) */
.callout {
  position: relative;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
  border-left-width: 6px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.callout + .callout { margin-top: 1rem; }

.callout .callout-title {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.callout .callout-subtitle { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 0; }
.callout p { margin-bottom: 0.25rem; }

/* Variants */
.callout-brand { border-left-color: var(--primary-color); background: rgba(255,107,53,0.04); }
.callout-info  { border-left-color: #0d6efd; background: rgba(13,110,253,0.04); }
.callout-success { border-left-color: #198754; background: rgba(25,135,84,0.04); }
.callout-warning { border-left-color: #ffc107; background: rgba(255,193,7,0.06); }
.callout-danger { border-left-color: #dc3545; background: rgba(220,53,69,0.05); }

.callout .bi { opacity: 0.9; }

.stat-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0;
}

/* Page Headers */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  position: relative;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.page-header .lead {
  max-width: 700px;
  margin: 0 auto;
}

/* About page hero banner */
.about-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background-image: url('public/modern-construction-site-with-building-under-const.jpg');
  background-size: cover;
  background-position: center;
}

/* White fade at the bottom */
.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,1) 100%);
  pointer-events: none;
}

.about-hero .about-hero-title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.about-hero .about-hero-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-primary);
  margin: 0;
}

/* Services page hero banner */
.services-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-image: url('public/modern-interior-design-showroom-with-elegant-furni.jpg');
  background-size: cover;
  background-position: center;
}

.services-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,1) 100%);
  pointer-events: none;
}

.services-hero .services-hero-title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.services-hero .services-hero-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-primary);
  margin: 0;
}

.text-primary1{
  --bs-text-opacity1: 1;
    color: rgb(240 89 36) !important;
}


/* Projects page hero banner */
.projects-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-image: url('public/construction-site-with-workers-building-infrastruc.jpg');
  background-size: cover;
  background-position: center;
}

.projects-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,1) 100%);
}

.projects-hero .projects-hero-title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.projects-hero .projects-hero-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-primary);
  margin: 0;
}

/* Team page hero banner */
.team-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-image: url('public/workers-smiling-community-impact.jpg');
  background-size: cover;
  background-position: center;
}

.team-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,1) 100%);
}

.team-hero .team-hero-title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.team-hero .team-hero-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-primary);
  margin: 0;
}

/* Sustainability page hero banner */
.sustainability-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-image: url('public/hero4.jpg');
  background-size: cover;
  background-position: center;
}

.sustainability-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,1) 100%);
}

.sustainability-hero .sustainability-hero-title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sustainability-hero .sustainability-hero-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-primary);
  margin: 0;
}

/* Contact page hero banner */
.contact-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-image: url('public/modern-construction-site-with-building-under-const.jpg');
  background-size: cover;
  background-position: center;
}

.contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,1) 100%);
}

.contact-hero .contact-hero-title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-hero .contact-hero-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-primary);
  margin: 0;
}

/* About Intro */
.about-intro .display-6 {
  letter-spacing: -0.02em;
}

.about-intro-figure {
  position: relative;
}

.about-intro-img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
}

.about-intro-accent {
  position: absolute;
  z-index: 0;
  right: -18px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  clip-path: polygon(20% 0%, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

@media (max-width: 992px) {
  .about-intro-accent {
    width: 110px;
    height: 110px;
    right: -12px;
    bottom: -12px;
  }
}

/* Service Cards */
.service-card {
  padding: 3rem;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

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

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .icon-circle {
  transform: scale(1.1) rotate(5deg);
}

.service-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Project Cards */
.project-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.project-card img {
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card .card-body {
  padding: 2rem;
}

.project-card h5 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Partners/Clients Grid */
.partners-section {
  background: var(--white);
}

.partners-grid {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 2rem;
  contain: layout paint;
}

/* Disable any transitions/animations inside the partners section to avoid flicker */
.partners-section *,
.partners-section *::before,
.partners-section *::after {
  animation: none !important;
  transition: none !important;
}

.partners-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  align-items: center;
  gap: 2rem;
  padding: 0.25rem 0;
}

/* Row separators */
.partners-row + .partners-row {
  border-top: 1px solid var(--border-color);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.partner {
  font-weight: 700;
  color: var(--text-primary);
  opacity: 1;
  text-align: left;
  display: flex;
  align-items: center;
  min-height: 40px;
  justify-content: flex-start;
}

/* Partner logo images */
.partner-logo {
  height: 80px;
  width: 140px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 1;
}

@media (max-width: 992px) {
  .partners-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 576px) {
  .partners-row { grid-template-columns: repeat(2, 1fr); }
}

/* Team Cards */
.team-card {
  padding: 2.5rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

/* Team feature (two profiles + center logo) */
.team-feature {
  margin-top: 1rem;
}

.team-feature .h5 { color: var(--text-secondary); font-weight: 600; }

.hex-frame {
  width: 240px;
  aspect-ratio: 1;
  position: relative;
  margin-inline: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12));
}

.hex-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  border: 6px solid var(--border-color);
  border-radius: 18px; /* softens edges slightly */
}

.hex-frame img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  border-radius: 14px;
}

@media (max-width: 991.98px) {
  .hex-frame { width: 200px; }
}

@media (max-width: 575.98px) {
  .hex-frame { width: 180px; }
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 2.5rem;
  border: 4px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card h5 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-card .text-muted {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color) !important;
}

/* Contact Section */
.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Forms */
.form-control,
.form-select {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* Footer */
footer {
  background: #1a1a1a;
  padding: 4rem 0 2rem;
}

footer h5 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

footer a:hover {
  color: var(--primary-color) !important;
  padding-left: 5px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  margin-right: 0.75rem;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  padding-left: 0 !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utilities */
.text-balance {
  text-wrap: balance;
}

.shadow-custom {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }

  .hero-section {
    min-height: 70vh;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .stat-card h3 {
    font-size: 3rem;
  }

  section {
    padding: 3rem 0;
  }

  .btn {
    padding: 0.75rem 2rem;
  }

  .btn-lg {
    padding: 1rem 2.5rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
