/* ===== GLOBAL RESET & VARIABLES ===== */
:root {
  --primary: #0D7377;
  --primary-dark: #065A5E;
  --primary-light: #11999E;
  --accent: #D4A017;
  --accent-light: #F0C040;
  --dark: #1A1A2E;
  --dark-light: #2D2D44;
  --gray: #6C757D;
  --gray-light: #E8E8E8;
  --light: #F4F9F9;
  --white: #FFFFFF;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --shadow: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--dark);
  line-height: 1.3;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 16px;
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(13,115,119,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,115,119,0.5);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(212,160,23,0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.5);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 25px;
}

.top-bar-left a {
  color: rgba(255,255,255,0.8);
}

.top-bar-left a:hover {
  color: var(--accent);
}

.top-bar-left i {
  margin-right: 6px;
  color: var(--accent);
}

.top-bar-right {
  display: flex;
  gap: 12px;
}

.top-bar-right a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}

.top-bar-right a:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

/* ===== HEADER / NAVBAR ===== */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1002;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: var(--dark);
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
}

.logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.3;
}

.logo-text span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 5px;
}

.nav-menu a {
  padding: 10px 20px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  border-radius: var(--radius);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

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

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

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO / BANNER SLIDER ===== */
.hero {
  position: relative;
  overflow: hidden;
  height: 550px;
}

.hero-slide {
  height: 550px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,115,119,0.85) 0%, rgba(26,26,46,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 60px;
  animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
  font-size: 46px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--accent-light);
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ===== ABOUT INTRO (HOME) ===== */
.about-intro {
  background: var(--light);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-intro-img img {
  width: 100%;
  display: block;
  transition: var(--transition);
}

.about-intro-img:hover img {
  transform: scale(1.03);
}

.about-intro-img::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border: 4px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

.about-intro-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-intro-text h2 span {
  color: var(--primary);
}

.about-intro-text p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 15px;
}

.about-intro-text .highlight-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius);
  margin: 20px 0;
  font-style: italic;
  font-size: 15px;
  border-left: 4px solid var(--accent);
}

/* ===== PRODUCTS SECTION (HOME) ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  padding: 25px;
}

.product-card-img img {
  max-height: 140px;
  transition: var(--transition);
}

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

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark);
}

.product-card-body p {
  color: var(--gray);
  font-size: 14px;
}

.spec-link {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
}

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

/* ===== SERVICES SECTION (HOME) ===== */
.services-home {
  background: var(--light);
}

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

.service-card {
  background: var(--white);
  padding: 40px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

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

.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(212,160,23,0.1);
  border-radius: 50%;
  top: -100px;
  right: -50px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(17,153,158,0.1);
  border-radius: 50%;
  bottom: -80px;
  left: -30px;
}

.cta-section h2 {
  font-size: 34px;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h4,
.footer-col .footer-heading {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after,
.footer-col .footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-links a i {
  margin-right: 8px;
  color: var(--accent);
  font-size: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 16px;
  min-width: 20px;
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 50px 0 0 50px;
  background: var(--dark-light);
  color: var(--white);
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form button {
  padding: 10px 20px;
  background: var(--accent);
  border: none;
  border-radius: 0 50px 50px 0;
  color: var(--dark);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(212,160,23,0.06);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.page-banner h1 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 10px;
}

.page-banner .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

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

.page-banner .breadcrumb span {
  color: rgba(255,255,255,0.5);
}

/* ===== ABOUT PAGE ===== */
.about-full {
  background: var(--white);
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-full-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about-full-text h2 span {
  color: var(--primary);
}

.about-full-text p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 15px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  text-align: center;
  padding: 20px 10px;
  background: var(--light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.stat-box:hover {
  background: var(--primary);
  color: var(--white);
}

.stat-box:hover h3,
.stat-box:hover p {
  color: var(--white);
}

.stat-box h3 {
  font-size: 32px;
  color: var(--primary);
  transition: var(--transition);
}

.stat-box p {
  font-size: 13px;
  color: var(--gray);
  margin-top: 5px;
  transition: var(--transition);
}

/* Vision / Mission / Values */
.vmv-section {
  background: var(--light);
}

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

.vmv-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.vmv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.vmv-card img {
  width: 80px;
  margin-bottom: 20px;
}

.vmv-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary);
}

.vmv-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* Management Team */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-card {
  flex: 0 1 calc(33.333% - 20px);
  max-width: 300px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.team-card-avatar {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--white, #ffffff);
}

.team-card-avatar i {
  font-size: 60px;
  color: rgba(255,255,255,0.3);
}

.team-card-body {
  padding: 25px 20px;
}

.team-card-body h3 {
  font-size: 17px;
  margin-bottom: 5px;
}

.team-card-body .role {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.team-card-body p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== PRODUCTS PAGE ===== */
.products-page-section {
  background: var(--white);
}

.products-category {
  margin-bottom: 50px;
}

.products-category h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-light);
  display: inline-block;
}

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

.product-page-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.product-page-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-page-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-page-card:hover .product-page-card-img img {
  transform: scale(1.05);
}

.product-page-card-body {
  padding: 20px;
}

.product-page-card-body h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.product-page-card-body p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.product-page-card-body .product-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  margin-top: 10px;
}

/* ===== SERVICES PAGE ===== */
.services-page-section {
  background: var(--white);
}

.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  transition: var(--transition);
  align-items: start;
}

.service-detail:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(5px);
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.service-detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-detail-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-detail-content .challenge {
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  font-style: italic;
}

.service-detail-content p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== SERVICE SUB-LIST ===== */
.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-detail-content ul li {
  color: var(--gray);
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.service-detail-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
}

/* ===== OPERATIONS / PORTS ===== */
.ports-section {
  background: var(--white);
}

.ports-region {
  margin-bottom: 40px;
}

.ports-region h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-light);
  display: inline-block;
}

.ports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.port-card {
  background: var(--light);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  border: 2px solid transparent;
}

.port-card:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow);
}

.port-card i {
  display: block;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.compliance-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.compliance-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.compliance-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.compliance-card p {
  color: var(--gray);
  font-size: 14px;
}

/* Employee Relations */
.emp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.emp-card {
  background: var(--white);
  padding: 25px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.emp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.emp-card i {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 12px;
}

.emp-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.emp-card p {
  color: var(--gray);
  font-size: 13px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--light);
  border-radius: var(--radius);
  align-items: start;
  transition: var(--transition);
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-info-card i {
  font-size: 24px;
  color: var(--primary);
  background: var(--white);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-info-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form {
  background: var(--light);
  padding: 40px;
  border-radius: var(--radius);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-secondary);
  font-size: 14px;
  color: #333;
  transition: var(--transition);
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,115,119,0.1);
}

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

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

.contact-map {
  margin-top: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

.scroll-top.visible {
  display: flex;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .team-card {
    flex: 0 1 calc(50% - 15px);
  }
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .emp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 1001;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 16px;
  }

  .hamburger {
    display: flex;
    z-index: 1002;
  }

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

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    height: 450px;
  }

  .hero-slide {
    height: 450px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

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

  .products-grid,
  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .vmv-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .page-banner h1 {
    font-size: 32px;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-detail-icon {
    margin: 0 auto;
  }

  .service-detail-content ul {
    grid-template-columns: 1fr;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .emp-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .logo-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .products-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 24px;
  }

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

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-card {
    flex: 0 1 100%;
  }

  .emp-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }
}

/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: none;
}

.nav-overlay.active {
  display: block;
}
