:root {
  --green: #0b5d34;
  --dark-green: #063d22;
  --gold: #f4b400;
  --gold-dark: #c99000;
  --white: #ffffff;
  --light: #f7f7f2;
  --dark: #172017;
  --text: #4d554d;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-position: inside;
}

.container {
  width: min(1150px, 90%);
  margin: auto;
}

.header {
  background: var(--white);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  width: min(1200px, 92%);
  margin: auto;
  height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--green);
  font-size: 18px;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

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

.nav-links a {
  font-weight: 600;
  color: var(--dark);
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--green);
}

.nav-btn {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 30px;
}

.menu-btn {
  display: none;
  border: none;
  background: var(--green);
  color: var(--white);
  font-size: 24px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.hero {
  min-height: 88vh;
  background:
    linear-gradient(rgba(6, 61, 34, 0.82), rgba(6, 61, 34, 0.75)),
    url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  width: min(900px, 90%);
  margin: auto;
  text-align: center;
}

.tagline,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 14px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.1;
  margin: 18px 0;
}

.hero p {
  font-size: 19px;
  max-width: 780px;
  margin: 0 auto 30px;
  color: #f3f3f3;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 35px;
  font-weight: 800;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--gold);
  color: var(--dark-green);
}

.btn.primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

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

.btn.secondary:hover {
  background: var(--white);
  color: var(--green);
}

.section {
  padding: 90px 0;
}

.light {
  background: var(--light);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 45px;
  align-items: center;
}

h2 {
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.2;
  margin: 12px 0 18px;
  color: var(--dark-green);
}

h3 {
  color: var(--green);
  margin-bottom: 10px;
}

p {
  color: var(--text);
  margin-bottom: 12px;
}

.feature-card,
.highlight-box,
.info-box,
.card,
.service-card,
.contact-form,
.contact-info {
  background: var(--white);
  padding: 32px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.feature-card {
  border-top: 7px solid var(--gold);
}

.feature-card li {
  margin: 12px 0;
  color: var(--text);
}

.text-link {
  color: var(--green);
  font-weight: 800;
}

.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  transition: 0.3s;
  border-bottom: 6px solid var(--green);
}

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

.card-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.card a {
  color: var(--green);
  font-weight: 800;
}

.cta {
  background: var(--dark-green);
  color: var(--white);
  padding: 65px 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}

.cta h2,
.cta p {
  color: var(--white);
}

.page-hero {
  background:
    linear-gradient(rgba(6, 61, 34, 0.86), rgba(6, 61, 34, 0.8)),
    url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 110px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  max-width: 850px;
  margin: 14px auto;
  line-height: 1.15;
}

.page-hero p {
  color: #f3f3f3;
  max-width: 750px;
  margin: auto;
  font-size: 18px;
}

.construction-page {
  background:
    linear-gradient(rgba(6, 61, 34, 0.82), rgba(6, 61, 34, 0.8)),
    url("../assets/images/construction.jpg");
  background-size: cover;
  background-position: center;
}

.agriculture-page {
  background:
    linear-gradient(rgba(6, 61, 34, 0.82), rgba(6, 61, 34, 0.8)),
    url("../assets/images/agriculture.jpg");
  background-size: cover;
  background-position: center;
}

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

.info-box {
  border-top: 6px solid var(--gold);
}

.info-box li {
  margin: 8px 0;
  color: var(--text);
}

.table-wrapper {
  overflow-x: auto;
  box-shadow: var(--shadow);
  border-radius: 18px;
}

.management-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 760px;
}

.management-table th {
  background: var(--gold);
  color: var(--dark);
  padding: 16px;
  text-align: left;
  font-size: 16px;
}

.management-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  color: var(--text);
}

.management-table tr:hover {
  background: #fff8df;
}

.division-card {
  min-height: 420px;
  border-radius: 28px;
  padding: 40px;
  color: var(--white);
  display: flex;
  align-items: end;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.division-card h2,
.division-card p {
  color: var(--white);
}

.division-card span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.agriculture-bg {
  background:
    linear-gradient(rgba(6, 61, 34, 0.78), rgba(6, 61, 34, 0.78)),
    url("../assets/images/agriculture.jpg");
  background-size: cover;
  background-position: center;
}

.construction-bg {
  background:
    linear-gradient(rgba(6, 61, 34, 0.78), rgba(6, 61, 34, 0.78)),
    url("../assets/images/construction.jpg");
  background-size: cover;
  background-position: center;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--gold);
}

.number {
  font-size: 35px;
  font-weight: 900;
  color: rgba(11, 93, 52, 0.14);
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 35px;
  align-items: start;
}

.contact-item {
  margin: 22px 0;
  padding: 22px;
  background: var(--light);
  border-left: 6px solid var(--gold);
  border-radius: 12px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn.whatsapp {
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: bold;
  box-shadow: var(--shadow);
  z-index: 999;
}

.footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 25px;
}

.footer p {
  color: var(--white);
  margin: 0;
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    gap: 18px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .grid-2,
  .cards,
  .three-boxes,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 78vh;
  }
}

@media (max-width: 500px) {
  .navbar {
    height: 70px;
  }

  .logo span {
    font-size: 15px;
  }

  .section {
    padding: 65px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }
}

/* ==================================================
   CLEAN DIVISIONS DROPDOWN FIX
   Home | About | Divisions ▾ | Contact Us
   ================================================== */

.nav-links,
.nav-links li,
.dropdown-menu,
.dropdown-menu li {
  list-style: none;
}

.dropdown {
  position: relative;
}

.dropdown-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-title > a {
  font-weight: 600;
  color: var(--dark);
  transition: 0.3s;
}

.dropdown-title > a:hover,
.dropdown-title > a.active {
  color: var(--green);
}

.dropdown-toggle {
  border: none;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 4px;
  line-height: 1;
}

.dropdown-toggle:hover {
  color: var(--green);
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  min-width: 210px;
  background: var(--white);
  padding: 12px 0;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 2000;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--dark);
  font-weight: 700;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: var(--light);
  color: var(--green);
}

/* Allow normal text selection on the site */
body,
body * {
  -webkit-user-select: text;
  user-select: text;
}

a,
button,
.btn,
.nav-btn,
.dropdown-toggle {
  cursor: pointer;
}

@media (max-width: 900px) {
  .dropdown {
    width: 100%;
  }

  .dropdown-title {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    background: var(--light);
    border-radius: 12px;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu,
  .dropdown.open:hover .dropdown-menu {
    display: block;
  }
}


/* Real Novenutra full logo */
.logo img {
  width: 300px;
  height: auto;
  object-fit: contain;
}

.logo {
  gap: 0;
}

@media (max-width: 900px) {
  .logo img {
    width: 240px;
  }
}

@media (max-width: 500px) {
  .logo img {
    width: 200px;
  }
}


/* ==================================================
   LOGO SIZE FIX
   Prevents the logo from pushing/distorting the hero section.
   ================================================== */

.header {
  overflow: visible;
}

.navbar {
  height: 86px;
  min-height: 86px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  height: 86px;
  overflow: hidden;
}

.logo img {
  width: auto !important;
  max-width: 330px !important;
  height: auto !important;
  max-height: 72px !important;
  object-fit: contain !important;
  display: block;
}

/* The full logo already contains the company name, so keep extra text hidden if it exists */
.logo span {
  display: none;
}

@media (max-width: 900px) {
  .navbar {
    height: 78px;
    min-height: 78px;
  }

  .logo {
    height: 78px;
  }

  .logo img {
    max-width: 250px !important;
    max-height: 60px !important;
  }
}

@media (max-width: 500px) {
  .logo img {
    max-width: 210px !important;
    max-height: 54px !important;
  }
}


/* ==================================================
   PREMIUM NAVBAR LOGO
   Uses logo icon + readable text instead of tiny full-image logo.
   ================================================== */

.navbar {
  height: 92px !important;
  min-height: 92px !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  height: 92px !important;
  overflow: visible !important;
}

.logo img {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  object-fit: contain !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.logo-text {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  color: var(--dark);
  white-space: nowrap;
}

.logo-text strong {
  font-size: 26px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.5px;
}

.logo-text small {
  font-size: 13px;
  font-weight: 800;
  color: #3b3b3b;
  margin-top: 5px;
  letter-spacing: 0.2px;
}

.header {
  border-bottom: 1px solid rgba(11, 93, 52, 0.08);
}

@media (max-width: 900px) {
  .navbar {
    height: 82px !important;
    min-height: 82px !important;
  }

  .logo {
    height: 82px !important;
    gap: 10px !important;
  }

  .logo img {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
  }

  .logo-text strong {
    font-size: 20px;
  }

  .logo-text small {
    font-size: 11px;
  }
}

@media (max-width: 500px) {
  .logo img {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
  }

  .logo-text strong {
    font-size: 17px;
  }

  .logo-text small {
    font-size: 10px;
  }
}


/* ==================================================
   CLIENT-READY NAVBAR LOGO FIX
   Balanced logo, clear company name, no awkward large gap.
   ================================================== */

.header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(11, 93, 52, 0.12) !important;
}

.navbar {
  width: min(1320px, 88%) !important;
  height: 82px !important;
  min-height: 82px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  height: 82px !important;
  overflow: visible !important;
  flex-shrink: 0 !important;
}

.logo img {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
  display: block !important;
}

.logo-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

.logo-text strong {
  display: block !important;
  font-size: 25px !important;
  font-weight: 900 !important;
  color: var(--green) !important;
  letter-spacing: -0.5px !important;
}

.logo-text small {
  display: block !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #333333 !important;
  margin-top: 5px !important;
  letter-spacing: 0.2px !important;
}

.nav-links {
  gap: 24px !important;
}

.page-hero {
  padding-top: 95px !important;
  padding-bottom: 95px !important;
}

.hero {
  min-height: 78vh !important;
}

@media (max-width: 900px) {
  .navbar {
    width: min(1200px, 92%) !important;
    height: 76px !important;
    min-height: 76px !important;
  }

  .logo {
    height: 76px !important;
    gap: 9px !important;
  }

  .logo img {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
  }

  .logo-text strong {
    font-size: 18px !important;
  }

  .logo-text small {
    font-size: 10px !important;
  }

  .nav-links {
    top: 76px !important;
  }
}

@media (max-width: 500px) {
  .logo img {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
  }

  .logo-text strong {
    font-size: 16px !important;
  }

  .logo-text small {
    font-size: 9px !important;
  }
}


/* ==================================================
   BALANCED NAVBAR SPACING
   Reduces the wide empty space between logo and menu on large screens.
   ================================================== */

.navbar {
  width: min(1180px, 90%) !important;
  margin: 0 auto !important;
  height: 82px !important;
  min-height: 82px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.logo {
  gap: 10px !important;
}

.logo img {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
}

.logo-text strong {
  font-size: 23px !important;
}

.logo-text small {
  font-size: 12px !important;
}

.nav-links {
  gap: 22px !important;
}

.nav-btn {
  padding: 10px 20px !important;
}

@media (max-width: 900px) {
  .navbar {
    width: min(1200px, 92%) !important;
  }

  .logo img {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
  }

  .logo-text strong {
    font-size: 18px !important;
  }

  .logo-text small {
    font-size: 10px !important;
  }
}


/* ==================================================
   FINAL LOGO + NAV MENU SPACING UPDATE
   Bigger logo and clearer spacing between menu links.
   ================================================== */

.logo {
  gap: 13px !important;
}

.logo img {
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
}

.logo-text strong {
  font-size: 26px !important;
  line-height: 1.05 !important;
}

.logo-text small {
  font-size: 13px !important;
  margin-top: 5px !important;
}

.nav-links {
  gap: 34px !important;
}

.nav-links a {
  font-size: 16px !important;
  font-weight: 800 !important;
}

.nav-btn {
  padding: 12px 24px !important;
}

.dropdown-title {
  gap: 7px !important;
}

@media (max-width: 900px) {
  .logo img {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
  }

  .logo-text strong {
    font-size: 20px !important;
  }

  .logo-text small {
    font-size: 11px !important;
  }

  .nav-links {
    gap: 20px !important;
  }
}

@media (max-width: 500px) {
  .logo img {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
  }

  .logo-text strong {
    font-size: 17px !important;
  }

  .logo-text small {
    font-size: 10px !important;
  }
}


/* ==================================================
   UNIFORM NAVBAR WORDING / TYPOGRAPHY
   Makes Home, About, Divisions and Contact Us visually consistent.
   ================================================== */

.navbar,
.logo-text,
.nav-links,
.nav-links a,
.dropdown-title > a,
.dropdown-toggle,
.nav-btn {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Logo wording */
.logo-text strong {
  font-size: 26px !important;
  font-weight: 900 !important;
  letter-spacing: -0.4px !important;
  line-height: 1.05 !important;
}

.logo-text small {
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.1 !important;
}

/* Main menu wording */
.nav-links a,
.dropdown-title > a {
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
}

/* Dropdown arrow aligned with Divisions text */
.dropdown-toggle {
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  padding-top: 2px !important;
}

/* Contact Us button text same size and weight as other menu items */
.nav-btn {
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  padding: 14px 25px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Makes the whole top section align nicely */
.navbar {
  align-items: center !important;
}

.nav-links {
  align-items: center !important;
}

.dropdown-title {
  align-items: center !important;
}

@media (max-width: 900px) {
  .logo-text strong {
    font-size: 20px !important;
  }

  .logo-text small {
    font-size: 11px !important;
  }

  .nav-links a,
  .dropdown-title > a,
  .nav-btn {
    font-size: 15px !important;
  }
}

@media (max-width: 500px) {
  .logo-text strong {
    font-size: 17px !important;
  }

  .logo-text small {
    font-size: 10px !important;
  }
}


/* ==================================================
   PREMIUM MANAGEMENT GRID
   Replaces the old table with smart leadership cards.
   ================================================== */

.management-section {
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f2 100%);
}

.leadership-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto 42px;
}

.leadership-summary div {
  background: var(--white);
  border: 1px solid rgba(11, 93, 52, 0.12);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}

.leadership-summary strong {
  display: block;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.leadership-summary span {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.management-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 242, 0.96));
  border: 1px solid rgba(11, 93, 52, 0.12);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  transition: 0.3s ease;
}

.management-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.management-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 150px;
  height: 150px;
  background: rgba(244, 180, 0, 0.10);
  border-radius: 50%;
}

.management-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.14);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.department-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(11, 93, 52, 0.10);
  color: var(--green);
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.initials {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(11, 93, 52, 0.25);
}

.management-card h3 {
  position: relative;
  z-index: 2;
  color: var(--dark-green);
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.person-title {
  position: relative;
  z-index: 2;
  color: var(--gold-dark);
  font-weight: 900;
  margin-bottom: 22px;
}

.division-leads {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.division-leads div {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  padding: 15px 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.division-leads span {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
}

.division-leads strong {
  display: block;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.35;
}

.marketing-card::before {
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.marketing-card .initials {
  background: var(--gold);
  color: var(--dark-green);
}

@media (max-width: 900px) {
  .leadership-summary,
  .management-grid {
    grid-template-columns: 1fr;
  }

  .management-card {
    padding: 26px;
  }

  .management-card h3 {
    font-size: 24px;
  }
}


/* ==================================================
   MANAGEMENT NUMBERING FIX
   Uses 01, 02, 03, 04 instead of confusing 4 / 2 / 1 stats.
   ================================================== */

.leadership-summary {
  display: none !important;
}

.department-badge {
  gap: 8px;
}

.department-badge em {
  font-style: normal;
  background: var(--gold);
  color: var(--dark-green);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}


/* ==================================================
   CLIENT PRESENTATION HOMEPAGE SECTIONS
   Adds more authenticity and reduces template/AI feel.
   ================================================== */

.why-section {
  background:
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.10), transparent 32%),
    #ffffff;
}

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

.why-card {
  background: var(--white);
  border: 1px solid rgba(11, 93, 52, 0.12);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.why-card:hover {
  transform: translateY(-7px);
}

.why-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.16);
  color: var(--dark-green);
  font-weight: 900;
  margin-bottom: 18px;
}

.why-card h3 {
  color: var(--dark-green);
  font-size: 21px;
  margin-bottom: 10px;
}

.approach-section {
  background:
    linear-gradient(rgba(6, 61, 34, 0.93), rgba(6, 61, 34, 0.93)),
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.35), transparent 35%);
  color: var(--white);
}

.approach-section h2,
.approach-section p {
  color: var(--white);
}

.approach-section .text-link {
  color: var(--gold);
}

.approach-steps {
  display: grid;
  gap: 16px;
}

.approach-steps div {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.approach-steps strong {
  display: block;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 5px;
}

.approach-steps span {
  color: #f5f5f5;
}

/* ==================================================
   PREMIUM FOOTER
   ================================================== */

.premium-footer {
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.12), transparent 30%),
    var(--dark);
  color: var(--white);
  text-align: left;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.9fr;
  gap: 35px;
}

.premium-footer h3,
.premium-footer h4 {
  color: var(--gold);
  margin-bottom: 14px;
}

.premium-footer p {
  color: #eeeeee;
  margin-bottom: 8px;
}

.premium-footer a {
  display: block;
  color: #eeeeee;
  margin-bottom: 8px;
  font-weight: 700;
  transition: 0.3s;
}

.premium-footer a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-brand p {
  max-width: 420px;
}

.footer-bottom {
  margin-top: 38px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .why-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ==================================================
   AGRICULTURE PAGE UPDATE
   Agriculture now focuses only on crops and livestock.
   ================================================== */

.agriculture-products-section {
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.08), transparent 34%),
    #ffffff;
}

.agri-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 430px));
  justify-content: center;
  gap: 30px;
}

.agri-product-card {
  min-height: 300px;
  border-top: 7px solid var(--gold);
  border-bottom: 7px solid var(--green);
  transition: 0.3s ease;
}

.agri-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.14);
}

.agri-product-card h3 {
  font-size: 28px;
  color: var(--dark-green);
}

.agri-product-card p {
  font-size: 17px;
}

@media (max-width: 800px) {
  .agri-products-grid {
    grid-template-columns: 1fr;
  }
}


/* ==================================================
   SPLIT AGRICULTURE + CONSTRUCTION HERO
   ================================================== */

.split-hero {
  position: relative;
  min-height: 90vh;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #123e2c;
}

.hero-split-panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 0;
}

.hero-half {
  position: relative;
  overflow: hidden;
}

.hero-agriculture {
  background:
    linear-gradient(rgba(6, 61, 34, 0.55), rgba(6, 61, 34, 0.78)),
    radial-gradient(circle at 20% 18%, rgba(244, 180, 0, 0.18), transparent 26%),
    linear-gradient(180deg, #3f7d59 0%, #2f6f4c 40%, #285f41 100%);
}

.hero-agriculture::before,
.hero-agriculture::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  border-radius: 50%;
  opacity: 0.95;
}

.hero-agriculture::before {
  bottom: 20%;
  height: 30%;
  background: linear-gradient(180deg, rgba(89, 145, 88, 0.9), rgba(48, 107, 65, 0.95));
  transform: rotate(-4deg);
}

.hero-agriculture::after {
  bottom: 0;
  height: 24%;
  background:
    repeating-linear-gradient(
      -8deg,
      rgba(145, 187, 92, 0.92) 0px,
      rgba(145, 187, 92, 0.92) 26px,
      rgba(90, 143, 70, 0.96) 26px,
      rgba(90, 143, 70, 0.96) 54px
    );
  transform: rotate(-3deg);
}

.hero-construction {
  background:
    linear-gradient(rgba(17, 33, 28, 0.46), rgba(6, 61, 34, 0.78)),
    radial-gradient(circle at 75% 16%, rgba(244, 180, 0, 0.18), transparent 26%),
    linear-gradient(180deg, #3f6a59 0%, #2f5a49 45%, #234639 100%);
}

.hero-construction::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background:
    linear-gradient(to top, rgba(11, 28, 23, 0.95), rgba(11, 28, 23, 0.78));
  clip-path: polygon(0 100%, 0 52%, 18% 58%, 18% 28%, 34% 28%, 34% 66%, 50% 66%, 50% 18%, 67% 18%, 67% 58%, 84% 58%, 84% 36%, 100% 36%, 100% 100%);
}

.hero-construction::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 16%;
  width: 36%;
  height: 25%;
  border-top: 8px solid rgba(244, 180, 0, 0.95);
  border-left: 8px solid rgba(244, 180, 0, 0.95);
  transform: skewX(-25deg);
  opacity: 0.9;
}

.hero-half-label {
  position: absolute;
  top: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.18);
}

.split-hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 90%);
  margin: auto;
  text-align: center;
}

.split-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 61, 34, 0.14), rgba(6, 61, 34, 0.14)),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.16) 100%);
  z-index: 1;
}

.hero-split-summary {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-mini-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 16px 20px;
  min-width: 230px;
  backdrop-filter: blur(5px);
}

.hero-mini-card strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
}

.hero-mini-card span {
  color: #f4f4f4;
  font-size: 15px;
}

@media (max-width: 900px) {
  .hero-split-panels {
    grid-template-columns: 1fr;
  }

  .hero-half {
    min-height: 45vh;
  }

  .hero-half-label {
    top: 18px;
    left: 18px;
    font-size: 12px;
    padding: 8px 13px;
  }

  .split-hero {
    min-height: auto;
    padding: 110px 0 80px;
  }

  .hero-split-summary {
    gap: 14px;
  }

  .hero-mini-card {
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .split-hero .hero-content h1 {
    font-size: 42px !important;
  }

  .hero-mini-card {
    width: 100%;
    max-width: 340px;
  }
}


/* ==================================================
   REAL PHOTO SPLIT HERO
   Uses real agriculture and construction photos.
   Sources selected from Pexels.
   ================================================== */

.hero-agriculture {
  background:
    linear-gradient(rgba(6, 61, 34, 0.52), rgba(6, 61, 34, 0.78)),
    url("../assets/images/hero-agriculture.jpg") center/cover no-repeat !important;
}

.hero-construction {
  background:
    linear-gradient(rgba(6, 61, 34, 0.56), rgba(6, 61, 34, 0.80)),
    url("../assets/images/hero-construction.jpg") center/cover no-repeat !important;
}

/* soften old decorative shapes so the real photos remain visible */
.hero-agriculture::before,
.hero-agriculture::after {
  opacity: 0.18 !important;
}

.hero-construction::before {
  opacity: 0.22 !important;
}

.hero-construction::after {
  opacity: 0.35 !important;
}

.split-hero::before {
  background:
    linear-gradient(90deg, rgba(6, 61, 34, 0.08), rgba(6, 61, 34, 0.08)),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.18) 100%) !important;
}


/* ==================================================
   CLEANER REAL-PHOTO HERO
   Reduces scattered elements and keeps hero message focused.
   ================================================== */

.clean-hero {
  min-height: 82vh !important;
}

.clean-hero .hero-split-panels {
  grid-template-columns: 1fr 1fr;
}

.clean-hero .hero-half-label,
.clean-hero .hero-split-summary {
  display: none !important;
}

.clean-hero::before {
  background:
    linear-gradient(90deg, rgba(6, 61, 34, 0.74), rgba(6, 61, 34, 0.62)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.24)) !important;
  z-index: 1;
}

.hero-glass {
  position: relative;
  z-index: 2;
  width: min(920px, 88%) !important;
  margin: auto !important;
  text-align: center !important;
  padding: 42px 44px;
  border-radius: 30px;
  background: rgba(6, 61, 34, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(3px);
}

.clean-hero .tagline {
  display: inline-block;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 9px 17px;
  border-radius: 999px;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}

.clean-hero h1 {
  font-size: clamp(44px, 5.4vw, 76px) !important;
  line-height: 1.08 !important;
  max-width: 900px;
  margin: 0 auto 22px !important;
}

.clean-hero p {
  max-width: 720px !important;
  margin: 0 auto 28px !important;
  font-size: 19px !important;
  line-height: 1.7 !important;
}

.clean-hero .hero-buttons {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .clean-hero {
    min-height: auto !important;
    padding: 95px 0 75px !important;
  }

  .hero-glass {
    width: min(720px, 90%) !important;
    padding: 34px 26px;
    border-radius: 24px;
  }

  .clean-hero h1 {
    font-size: 42px !important;
  }

  .clean-hero p {
    font-size: 16px !important;
  }
}

@media (max-width: 600px) {
  .clean-hero h1 {
    font-size: 34px !important;
  }

  .clean-hero .tagline {
    font-size: 11px !important;
    padding: 8px 12px;
  }
}


/* ==================================================
   SUBTLE ANIMATIONS
   ================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.btn,
.nav-btn,
.why-card,
.management-card,
.service-card,
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover,
.nav-btn:hover {
  transform: translateY(-2px);
}

.hero-glass,
.why-card,
.management-card {
  will-change: transform, opacity;
}

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

@media (max-width: 700px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-image {
    height: 220px;
  }
}


/* ==================================================
   RELIABLE CSS-ONLY EFFECTS
   These work without JavaScript.
   ================================================== */

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

/* Navbar entrance */
.header {
  animation: navDrop 0.7s ease both;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero text entrance */
.hero-content,
.hero-glass {
  animation: heroFadeUp 0.9s ease 0.15s both;
}

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

/* Slow background movement for split hero */
.hero-half {
  animation: slowHeroZoom 16s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes slowHeroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

/* Better menu hover underline */
.nav-links a:not(.nav-btn) {
  position: relative;
}

.nav-links a:not(.nav-btn)::after,
.dropdown-title > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-btn):hover::after,
.nav-links a.active:not(.nav-btn)::after,
.dropdown-title > a:hover::after,
.dropdown-title > a.active::after {
  width: 100%;
}

/* Button lift and glow */
.btn,
.nav-btn {
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease !important;
}

.btn:hover,
.nav-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.btn.primary:hover {
  box-shadow: 0 15px 35px rgba(244, 180, 0, 0.34);
}

/* Card hover polish */
.card,
.service-card,
.info-box,
.feature-card,
.highlight-box,
.management-card,
.why-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease !important;
}

.card:hover,
.service-card:hover,
.info-box:hover,
.feature-card:hover,
.highlight-box:hover,
.management-card:hover:hover,
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.14);
}

/* Section fade-in on page load. CSS-only, reliable */
.section,
.page-hero,
.cta,
.footer {
  animation: sectionSoftIn 0.8s ease both;
}

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

/* Stagger first few sections slightly */
.section:nth-of-type(2) { animation-delay: 0.08s; }
.section:nth-of-type(3) { animation-delay: 0.14s; }
.section:nth-of-type(4) { animation-delay: 0.20s; }

/* Floating WhatsApp button pulse */
.whatsapp-float {
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.30);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.48);
  }
}

/* Accessibility: reduce animations for users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}




/* Clean footer address placement */
.footer-location {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-location strong {
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
}

.footer-location span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.5;
}

/* Keep footer bottom clean and centered */
.footer-bottom,
.footer-copy {
  text-align: center;
}


/* Email link styling */
.footer a[href^="mailto:"],
.contact-card a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
}

.footer a[href^="mailto:"]:hover,
.contact-card a[href^="mailto:"]:hover {
  color: var(--gold);
}


/* ==================================================
   FINAL LOGO SIZE IMPROVEMENT
   Makes the navbar logo more visible and balanced.
   ================================================== */

.header .navbar {
  min-height: 92px !important;
  height: 92px !important;
  align-items: center !important;
}

.header .logo {
  gap: 14px !important;
  align-items: center !important;
}

.header .logo img {
  width: 62px !important;
  height: 62px !important;
  max-width: 62px !important;
  max-height: 62px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

.header .logo-text strong {
  font-size: 24px !important;
  line-height: 1.05 !important;
  display: block !important;
}

.header .logo-text small {
  font-size: 13px !important;
  line-height: 1.15 !important;
  display: block !important;
  margin-top: 3px !important;
}

@media (max-width: 900px) {
  .header .navbar {
    min-height: 84px !important;
    height: 84px !important;
  }

  .header .logo img {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
  }

  .header .logo-text strong {
    font-size: 21px !important;
  }

  .header .logo-text small {
    font-size: 12px !important;
  }
}

@media (max-width: 500px) {
  .header .navbar {
    min-height: 76px !important;
    height: 76px !important;
  }

  .header .logo {
    gap: 10px !important;
  }

  .header .logo img {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
  }

  .header .logo-text strong {
    font-size: 18px !important;
  }

  .header .logo-text small {
    font-size: 10px !important;
  }
}


/* ==================================================
   CONTACT PAGE CLEANUP + MAP
   ================================================== */
.contact-details-section {
  padding: 80px 0 !important;
  background: radial-gradient(circle at top right, rgba(244, 180, 0, 0.08), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
}
.contact-intro { margin-bottom: 42px !important; }
.contact-intro h2 { font-size: clamp(36px, 4vw, 56px) !important; margin-bottom: 14px !important; }
.contact-intro p { max-width: 720px; margin: 0 auto; font-size: 18px; line-height: 1.7; }
.contact-details-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: stretch; }
.contact-info-panel { display: grid; gap: 18px; }
.contact-detail-card {
  display: flex; gap: 18px; align-items: flex-start; background: #ffffff;
  border: 1px solid rgba(11, 93, 52, 0.12); border-radius: 22px; padding: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
}
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: 16px; background: rgba(244, 180, 0, 0.16);
  color: var(--green); display: grid; place-items: center; font-size: 24px; flex-shrink: 0;
}
.contact-detail-card h3 { color: var(--green); font-size: 21px !important; margin-bottom: 8px; }
.contact-detail-card p, .contact-detail-card a {
  font-size: 17px !important; line-height: 1.6; color: #2f2f2f; text-decoration: none; margin: 0;
}
.contact-detail-card a:hover { color: var(--gold); }
.map-card {
  min-height: 420px; border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(11, 93, 52, 0.14); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.13); background: #e8efe9;
}
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.footer-location { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; flex-direction: column; gap: 6px; }
.footer-location strong { color: var(--gold); font-size: 15px; font-weight: 800; }
.footer-location span { color: rgba(255, 255, 255, 0.86); font-size: 15px; line-height: 1.5; }
@media (max-width: 900px) {
  .contact-details-grid { grid-template-columns: 1fr; }
  .map-card, .map-card iframe { min-height: 360px; }
}
@media (max-width: 600px) {
  .contact-details-section { padding: 60px 0 !important; }
  .contact-detail-card { padding: 20px; }
  .contact-detail-card p, .contact-detail-card a { font-size: 16px !important; }
}
