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

:root {
  --primary: #0a1628;
  --primary-light: #132744;
  --accent: #c8a44e;
  --accent-light: #e0c574;
  --text: #e8e8e8;
  --text-muted: #8896a7;
  --white: #fff;
  --dark: #060d18;
  --glass: rgba(10, 22, 40, 0.85);
  --border: rgba(200, 164, 78, 0.2);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden
}

h1,
h2,
h3,
h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem
}

a {
  text-decoration: none;
  color: var(--accent);
  transition: all .3s
}

a:hover {
  color: var(--accent-light)
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

.section {
  padding: 100px 0
}

.section-dark {
  background: var(--primary)
}

.section-darker {
  background: var(--dark)
}

.highlight {
  color: var(--accent)
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all .4s;
  padding: 5px 0
}

.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  padding: 0
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto
}

.nav-logo h2 {
  color: var(--accent);
  font-weight: 900;
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 1px
}

.nav-logo span {
  color: var(--text-muted);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block
}

.nav-menu {
  display: flex;
  gap: 1.8rem;
  list-style: none
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s
}

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

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

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

.bar {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: .3s
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 13, 24, .92) 0%, rgba(10, 22, 40, .7) 50%, rgba(6, 13, 24, .85) 100%);
  z-index: 2
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem
}

.hero-content {
  max-width: 650px
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp .8s ease
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  animation: fadeInUp .8s .2s ease both
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.2rem;
  background: rgba(200, 164, 78, .1);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp .8s ease
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp .8s .4s ease both
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.8rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85rem;
  transition: all .3s;
  cursor: pointer;
  border: none
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border: 2px solid var(--accent)
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(200, 164, 78, .3)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .3)
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px)
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid var(--border);
  padding-left: 3rem;
  animation: fadeInRight .8s .3s ease both
}

.hero-stat h3 {
  color: var(--accent);
  font-size: 3rem;
  margin: 0;
  line-height: 1
}

.hero-stat p {
  color: var(--text-muted);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem
}

.section-label {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: .5rem
}

.section-header h2 {
  font-size: 2.5rem
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto
}

.header-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin: 1.5rem auto 0;
  border-radius: 2px
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem
}

.feature-item {
  background: var(--primary-light);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: .9rem;
  border: 1px solid rgba(255, 255, 255, .02);
  transition: all .3s
}

.feature-item:hover {
  border-color: var(--accent);
  transform: translateX(5px)
}

.feature-item i {
  color: var(--accent);
  font-size: 1.1rem
}

.about-image-wrapper {
  position: relative;
  padding: 2rem 0 0 2rem
}

.about-img {
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 2rem;
  bottom: 2rem;
  border: 2px solid var(--accent);
  border-radius: 12px;
  z-index: 1
}

/* ===== EXPERTISE ===== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem
}

.expertise-card {
  background: var(--primary-light);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .05);
  text-align: center;
  transition: all .4s;
  position: relative;
  overflow: hidden
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform .4s
}

.expertise-card:hover::before {
  transform: scaleX(1)
}

.expertise-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

.expertise-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(200, 164, 78, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  transition: all .3s
}

.expertise-card:hover .expertise-icon {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.1)
}

.expertise-card h3 {
  font-size: 1.1rem
}

.expertise-card p {
  color: var(--text-muted);
  font-size: .9rem
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, .05);
  transition: all .4s
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

.project-img {
  position: relative;
  height: 250px;
  overflow: hidden
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

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

.project-year {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--dark);
  padding: .25rem .75rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .8rem;
  z-index: 2
}

.project-content {
  padding: 1.5rem
}

.project-content h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem
}

.project-content p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1rem
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--accent) 0%, #b8943e 100%);
  padding: 60px 0
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: .25rem;
  font-weight: 900
}

.stat-item p {
  color: rgba(6, 13, 24, .7);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600
}

/* ===== PARKS ===== */
.parks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem
}

.park-card {
  background: var(--primary-light);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.park-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s
}

.park-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent)
}

.park-card:hover::after {
  transform: scaleX(1)
}

.park-card h4 {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--accent);
  font-size: 1rem;
  margin: 0 0 .5rem
}

.park-card p {
  color: var(--text-muted);
  font-size: .85rem;
  margin: 0
}

/* ===== PLAYGROUNDS ===== */
.playgrounds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem
}

.playground-card {
  background: var(--primary-light);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: all .3s
}

.playground-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent)
}

.playground-card h4 {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--accent);
  font-size: 1rem;
  margin: 0 0 .5rem
}

.playground-card p {
  color: var(--text-muted);
  font-size: .85rem;
  margin: 0
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-construction.png') center/cover;
  opacity: .15
}

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

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem
}

.contact-info-card {
  background: var(--primary-light);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all .3s
}

.contact-info-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px)
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 164, 78, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0
}

.contact-info-card h4 {
  margin-bottom: .25rem;
  font-size: 1rem
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: .9rem;
  margin: 0
}

.contact-info-card a {
  color: var(--text-muted)
}

.contact-info-card a:hover {
  color: var(--accent)
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: .9rem;
  transition: border-color .3s
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent)
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, .05)
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  filter: grayscale(.8) contrast(1.2)
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-brand h3 {
  color: var(--accent);
  font-size: 1.2rem
}

.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: .9rem
}

.social-links {
  display: flex;
  gap: 1rem
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all .3s
}

.social-links a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px)
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1rem
}

.footer-col ul {
  list-style: none
}

.footer-col ul li {
  margin-bottom: .6rem
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: .9rem;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem
}

.footer-col p i {
  color: var(--accent)
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: .85rem
}

.footer-logo {
  width: 360px;
  /* logo size */
  margin-top: 1.5rem;
  /* space from social icons */
  display: block;
  /* filter: brightness(0) invert(1); */
  /* white effect (optional for dark bg) */
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 160px 20px 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 164, 78, .08) 0%, transparent 70%);
  border-radius: 50%
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem
}

.page-hero h1 span {
  color: var(--accent)
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem
}

.breadcrumb {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500
}

.breadcrumb a {
  color: var(--accent)
}

.breadcrumb span {
  margin: 0 .5rem
}

/* ===== EMPLOYEES ===== */
.employees-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto
}

.employee-card-horizontal {
  display: flex;
  align-items: center;
  background: var(--primary-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  gap: 2rem;
  transition: all .4s
}

.employee-card-horizontal:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
  transform: translateY(-3px);
  border-color: var(--accent)
}

.employee-avatar-wrapper {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dark);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center
}

.employee-avatar-wrapper img,
.employee-avatar-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.employee-info {
  flex: 1
}

.employee-info h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .25rem
}

.employee-info .role {
  display: block;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.employee-info p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1rem
}

.employee-socials {
  display: flex;
  gap: 1rem
}

.employee-socials a {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: color .2s
}

.employee-socials a:hover {
  color: var(--accent)
}

/* ===== SUBSIDIARIES ===== */
.subsidiaries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0
}

.subsidiary-card {
  background: var(--primary-light);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: all .4s
}

.subsidiary-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .3)
}

.subsidiary-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 164, 78, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem
}

.subsidiary-card h3 {
  font-size: 1.2rem
}

.subsidiary-description {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1rem
}

.subsidiary-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1.5rem
}

.subsidiary-features .feature-item {
  padding: .5rem .75rem;
  font-size: .8rem;
  background: rgba(200, 164, 78, .05);
  border: none
}

.subsidiary-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border)
}

.subsidiary-stats .stat h4 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 0
}

.subsidiary-stats .stat p {
  color: var(--text-muted);
  font-size: .75rem;
  text-transform: uppercase;
  margin: 0
}

/* ===== EXPERIENCE TIMELINE ===== */
.experience-timeline {
  position: relative;
  padding: 2rem 0 2rem 3rem
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(200, 164, 78, .1))
}

.timeline-item {
  background: var(--primary-light);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 1.5rem;
  position: relative;
  transition: all .3s
}

.timeline-item:hover {
  border-color: var(--accent);
  transform: translateX(5px)
}

.timeline-marker {
  position: absolute;
  left: -3rem;
  top: 2rem;
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: .7rem
}

.timeline-content h3 {
  font-size: 1.15rem;
  margin-bottom: .25rem
}

.timeline-period {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .75rem
}

.timeline-description {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1rem
}

.timeline-achievements {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.achievement {
  background: rgba(200, 164, 78, .1);
  color: var(--accent);
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600
}

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

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 5px 25px rgba(37, 211, 102, .4);
  transition: all .3s;
  animation: pulse 2s infinite
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, .6)
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 5px 25px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 5px 25px rgba(37, 211, 102, .7)
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center
  }

  .hero-stats {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 2rem 0 0;
    margin-top: 2rem
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right .4s;
    padding: 2rem
  }

  .nav-menu.active {
    right: 0
  }

  .hamburger {
    display: flex
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
  }

  .hero-content h1 {
    font-size: 2.2rem
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem
  }

  .section {
    padding: 60px 0
  }

  .section-header h2 {
    font-size: 2rem
  }

  .page-hero h1 {
    font-size: 2.2rem
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: .5rem;
    text-align: center
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .employee-card-horizontal {
    flex-direction: column;
    text-align: center
  }

  .employee-socials {
    justify-content: center
  }

  .experience-timeline {
    padding-left: 2.5rem
  }
}

@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 1.8rem;
    /* reduce heading size */
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.95rem;
    /* better readability */
    line-height: 1.6;
    padding: 0 10px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 80px;
    /* space from navbar */
  }

  .hero {
    height: auto;
    /* remove fixed height */
    padding: 120px 0 60px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    padding-left: 0;
    border: none;
    margin-top: 2rem;
  }

  .hero-stat h3 {
    font-size: 2rem;
  }

}