/* ==========================================================================
   PARADISE GLOBAL - Eco-Friendly Construction & Machinery Master Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Green Theme Color Palette */
  --primary-green: #0d8a43;
  --primary-hover: #097035;
  --primary-dark: #052c17;
  --forest-deep: #031a0e;
  --accent-green: #22c55e;
  --accent-light: #86efac;
  --mint-light: #ecfdf5;
  --mint-bg: #f0fdf4;
  --mint-card: #f7fee7;
  
  /* Accents & Trust */
  --gold-accent: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.2);
  --green-glow: rgba(13, 138, 67, 0.25);
  
  /* Neutrals */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --bg-surface: #f1f5f9;
  --border-color: #e2e8f0;
  --border-light: rgba(255, 255, 255, 0.15);

  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(13, 138, 67, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 45px rgba(5, 44, 23, 0.14), 0 8px 20px rgba(0, 0, 0, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, #15803d 100%);
  color: #fff;
  box-shadow: 0 8px 20px var(--green-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px var(--green-glow);
  color: #fff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
}

/* Badge & Section Header */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--mint-light);
  color: var(--primary-green);
  border: 1px solid rgba(13, 138, 67, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-tag.light {
  background-color: rgba(255, 255, 255, 0.15);
  color: #86efac;
  border-color: rgba(255, 255, 255, 0.25);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--primary-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-title.light {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-subtitle.light {
  color: #cbd5e1;
}

.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   Section 1: Top Bar & Header Navigation
   ========================================================================== */
.top-bar {
  background-color: var(--forest-deep);
  color: #cbd5e1;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0;
  line-height: 1.2;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-item i {
  color: var(--accent-green);
  font-size: 0.88rem;
}

.top-item a {
  color: #e2e8f0;
  transition: var(--transition);
}

.top-item a:hover {
  color: #4ade80;
}

.top-divider {
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Main Navigation */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  height: 56px;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-green);
  transition: var(--transition);
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 0.25rem;
}

/* ==========================================================================
   Section 2: Hero Banner (Main Impression)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(3, 26, 14, 0.92) 0%, rgba(5, 44, 23, 0.82) 60%, rgba(13, 138, 67, 0.75) 100%),
              url('../images/hero_banner_machinery.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  font-weight: 600;
  color: #86efac;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: var(--gold-accent);
}

.hero-title {
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: #4ade80;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-accent);
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Section 3: Key Company Highlights (Trust Badges)
   ========================================================================== */
.highlights-section {
  padding: 4.5rem 0;
  background: #ffffff;
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
  opacity: 0;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 138, 67, 0.3);
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--mint-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: var(--primary-green);
  color: #fff;
  transform: scale(1.05);
}

.highlight-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.highlight-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Section 4: About Paradise Global (Brief Intro)
   ========================================================================== */
.about-preview-section {
  padding: 6rem 0;
  background-color: var(--bg-alt);
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-width: 250px;
}

.floating-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
}

.floating-stat-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.about-points-list {
  list-style: none;
  margin: 1.75rem 0 2.25rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.about-point-item i {
  color: var(--primary-green);
  font-size: 1.15rem;
  margin-top: 0.15rem;
}

/* ==========================================================================
   Section 5: Our Core Solutions & Business Sectors
   ========================================================================== */
.solutions-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 138, 67, 0.4);
}

.solution-img-box {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.solution-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-img-box img {
  transform: scale(1.08);
}

.solution-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(3, 26, 14, 0.85);
  backdrop-filter: blur(8px);
  color: #86efac;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.solution-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.solution-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-green);
}

.solution-link i {
  transition: transform 0.25s ease;
}

.solution-card:hover .solution-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   Section 6: Featured Machinery Models & Production Specs
   ========================================================================== */
.specs-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--forest-deep) 0%, var(--primary-dark) 100%);
  color: #ffffff;
}

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

.specs-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.specs-table th {
  background: rgba(13, 138, 67, 0.35);
  color: #86efac;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 1.1rem 1.25rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}

.specs-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.specs-table tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}

.model-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
  background: var(--primary-green);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
}

.output-tag {
  font-weight: 700;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* Specs Interactive Output Estimator */
.estimator-box {
  margin-top: 2.5rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.estimator-inputs {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group-custom label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.custom-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}

.custom-select option {
  background: var(--forest-deep);
  color: #fff;
}

.estimator-result {
  text-align: right;
}

.estimator-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #4ade80;
}

.estimator-sub {
  font-size: 0.82rem;
  color: #cbd5e1;
}

/* ==========================================================================
   Section 7: Finished Concrete Products Portfolio
   ========================================================================== */
.portfolio-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-item-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 138, 67, 0.35);
}

.product-thumb {
  height: 200px;
  background-color: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-item-card:hover .product-thumb img {
  transform: scale(1.06);
}

.product-body {
  padding: 1.5rem;
}

.product-type-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-spec-chip {
  display: inline-block;
  background: var(--mint-light);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.product-application {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Section 8: Entrepreneur Call-To-Action (Business Opportunity)
   ========================================================================== */
.cta-banner-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #097035 0%, var(--forest-deep) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.cta-banner-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.cta-banner-desc {
  font-size: 1.08rem;
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-key-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.2rem;
}

.cta-point {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.cta-point i {
  color: var(--gold-accent);
  font-size: 1.2rem;
}

.cta-box-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-box-badge {
  background: var(--gold-accent);
  color: #000;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.cta-box-heading {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-box-sub {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   Section 9: Leadership Statements
   ========================================================================== */
.leadership-section {
  padding: 6rem 0;
  background-color: var(--bg-alt);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.leader-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 138, 67, 0.3);
}

.leader-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(to right, var(--mint-bg), #ffffff);
}

.leader-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-green);
  box-shadow: 0 4px 14px rgba(13, 138, 67, 0.2);
}

.leader-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.leader-role {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.leader-body {
  padding: 2rem;
  position: relative;
  flex-grow: 1;
}

.quote-icon {
  font-size: 2.2rem;
  color: rgba(13, 138, 67, 0.18);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.leader-quote {
  font-style: italic;
  color: var(--text-main);
  font-size: 1.02rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

/* ==========================================================================
   Section 10: Infrastructure & Contact Information
   ========================================================================== */
.infrastructure-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.infra-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.infra-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.infra-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-green);
  background: var(--mint-light);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.infra-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.infra-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.infra-detail-item i {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

.infra-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Section 11: Footer
   ========================================================================== */
.footer-main {
  background: var(--forest-deep);
  color: #cbd5e1;
  padding-top: 5rem;
  border-top: 4px solid var(--primary-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary-green);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary-green);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #4ade80;
  transform: translateX(4px);
}

.brochure-download-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
}

.brochure-download-card p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 0.85rem;
}

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: #64748b;
}

.footer-bottom a:hover {
  color: var(--accent-green);
}

/* ==========================================================================
   Page Headers (Inner Pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 1rem;
}

.breadcrumb-nav a {
  color: #cbd5e1;
}

.breadcrumb-nav a:hover {
  color: var(--accent-green);
}

/* ==========================================================================
   Filterable Tabs & Product Catalog (Products Page)
   ========================================================================== */
.filter-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab-btn:hover, .filter-tab-btn.active {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
  box-shadow: 0 4px 14px var(--green-glow);
}

.machinery-detail-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  transition: var(--transition);
}

.machinery-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 138, 67, 0.4);
}

.machinery-card-img {
  position: relative;
  min-height: 280px;
}

.machinery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machinery-card-content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}

.specs-grid-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: var(--bg-alt);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  margin: 1.2rem 0 1.5rem 0;
}

.spec-mini-item {
  display: flex;
  flex-direction: column;
}

.spec-mini-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.spec-mini-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* ==========================================================================
   Entrepreneurship Steps & ROI Breakdown
   ========================================================================== */
.step-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.setup-step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(13, 138, 67, 0.12);
  line-height: 1;
}

.setup-calc-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
}

/* ==========================================================================
   Contact Form & Interactive Elements
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-card-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-control-custom {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.form-control-custom:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(13, 138, 67, 0.12);
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
}

.map-card-frame {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-top: 1rem;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.float-whatsapp {
  background-color: #25d366;
}

.float-phone {
  background-color: var(--primary-green);
}

.float-btn:hover {
  transform: scale(1.12);
  color: #fff;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 26, 14, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--primary-dark);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-split, .cta-banner-inner, .machinery-detail-card, .setup-calc-wrapper, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-floating-card {
    right: 10px;
    bottom: -15px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition);
    border-bottom: 2px solid var(--primary-green);
  }
  .nav-links.show {
    transform: translateY(0);
  }
  .nav-cta {
    display: none;
  }
  .hero-section {
    padding: 3.5rem 0;
    min-height: auto;
  }
  .hero-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.2rem;
  }
  .about-points-list, .cta-key-points {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Home Page Team & Management Section Styles
   ========================================================================== */
.team-section {
  padding: 5.5rem 0;
  background: var(--bg-alt);
  position: relative;
}

.team-exec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.team-card-modern {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--gold-accent));
  opacity: 0;
  transition: var(--transition);
}

.team-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 138, 67, 0.3);
}

.team-card-modern:hover::before {
  opacity: 1;
}

.team-avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-bg);
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(13, 138, 67, 0.15);
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.team-avatar-icon {
  font-size: 2.2rem;
  color: var(--primary-green);
}

.team-dept-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--mint-bg);
  color: var(--primary-green);
  margin-bottom: 0.6rem;
  border: 1px solid rgba(13, 138, 67, 0.15);
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.team-member-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-accent);
  margin-bottom: 0.85rem;
}

.team-member-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.team-contact-bar {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.team-contact-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.team-contact-btn:hover {
  background: var(--primary-green);
  color: #ffffff;
  transform: translateY(-2px);
}

.team-contact-btn.btn-wa:hover {
  background: #25D366;
  color: #ffffff;
}

