/**
 * Natyra SH.P.K. Website Styles
 * Version: 1.0.0
 * Author: ukakonsulting.com

/* ==========================================================================
   1. Root elements
   ========================================================================== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
  text-decoration: none;
}
li{
  list-style: none;
}
body {
  font-family: 'Poppins', sans-serif;
  /* background-color: #f5f5f5; */ /* We'll set specific backgrounds or this can be a fallback */
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Prevent horizontal drift that can hide fixed elements on mobile */
html, body { overflow-x: clip; }

main {
  flex-grow: 1;
}


/* ==========================================================================
   2. Global Variables & Typography
   ========================================================================== */

:root{
  /* Colors */
  --primary-color:#065a05;
  --secondary-color:#56b74a;
  --background-color:#f5f5f5;
  --text-color:#333;
  --secondary-text-color:black;
  --white-color:#fff;
  --light-green:#e8f5e8;
  --dark-green:#054404;
  --accent-color:#4CAF50;
  --warning-color:#ff9800;
  --info-color:#2196F3;
  --success-color:#4CAF50;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;

  /* Design tokens */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --radius-pill: 9999px;

  /* Typographic scale */
  --font-2xl: clamp(2rem, 2.5vw + 1rem, 3rem);
  --font-xl: clamp(1.5rem, 1.2vw + 1rem, 2.25rem);
  --font-lg: 1.25rem;
  --font-md: 1rem;
  --font-sm: 0.875rem;

  /* Line heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;

  /* Container widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-normal: 960px;
    --container-lg: 1140px;
    --container-xxl: 1320px;

      /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem; 

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Layout tokens */
  --header-gap: 5rem;
}
/*Base Layout Classes*/
.container {
  max-width: var(--container-normal );
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.container-sm  { max-width: var(--container-sm); margin: 0 auto; }
.container-md  { max-width: var(--container-md); margin: 0 auto;  }
.container-lg  { max-width: var(--container-lg); margin: 0 auto; }
.container-xxl { max-width: var(--container-xxl); margin: 0 auto; }
.container-normal { max-width: var(--container-normal); margin: 0 auto; }
/* Alias to prevent layout regressions from using a non-existent class */
.container-large { max-width: var(--container-lg); margin: 0 auto; }

/* ==========================================================================
   3. Utility Classes (non-intrusive; opt-in via HTML)
   ========================================================================== */

/* Layout */
.u-flex { display: flex; }
.u-flex-col { flex-direction: column; }
.u-flex-row { flex-direction: row; }
.u-grid { display: grid; }
.u-inline-block { display: inline-block; }
.u-hidden { display: none !important; }

/* Flex helpers */
.u-items-start { align-items: flex-start; }
.u-items-center { align-items: center; }
.u-items-end { align-items: flex-end; }
.u-justify-start { justify-content: flex-start; }
.u-justify-center { justify-content: center; }
.u-justify-between { justify-content: space-between; }
.u-justify-end { justify-content: flex-end; }

/* Grid helpers */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
/* Auto-fit helpers */
.grid-auto-fit-350 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }

/* Gap (uses spacing scale) */
.u-gap-xs { gap: var(--spacing-xs); }
.u-gap-sm { gap: var(--spacing-sm); }
.u-gap-md { gap: var(--spacing-md); }
.u-gap-lg { gap: var(--spacing-lg); }

/* Spacing (small, medium, large) */
.u-m-0 { margin: 0; }
.u-mx-auto { margin-left: auto; margin-right: auto; }
.u-my-sm { margin-top: var(--spacing-sm); margin-bottom: var(--spacing-sm); }
.u-my-md { margin-top: var(--spacing-md); margin-bottom: var(--spacing-md); }
.u-my-lg { margin-top: var(--spacing-lg); margin-bottom: var(--spacing-lg); }
.u-mt-sm { margin-top: var(--spacing-sm); }
.u-mt-md { margin-top: var(--spacing-md); }
.u-mt-lg { margin-top: var(--spacing-lg); }
.u-mb-sm { margin-bottom: var(--spacing-sm); }
.u-mb-md { margin-bottom: var(--spacing-md); }
.u-mb-lg { margin-bottom: var(--spacing-lg); }

.u-p-0 { padding: 0; }
.u-p-sm { padding: var(--spacing-sm); }
.u-p-md { padding: var(--spacing-md); }
.u-p-lg { padding: var(--spacing-lg); }
.u-px-sm { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.u-px-md { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.u-px-lg { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.u-py-sm { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.u-py-md { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.u-py-lg { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }

/* Width & max-width helpers */
.u-w-full { width: 100%; }
.u-max-w-normal { max-width: var(--container-normal); }
.u-max-w-lg { max-width: var(--container-lg); }
.u-max-w-xxl { max-width: var(--container-xxl); }

/* Text helpers */
.u-text-center { text-align: center; }
.u-text-right { text-align: right; }
.u-text-left { text-align: left; }
.u-text-primary { color: var(--primary-color); }
.u-text-secondary { color: var(--secondary-color); }

/* Background helpers */
.u-bg-white { background-color: var(--white-color); }
.u-bg-light-green { background-color: var(--light-green); }

/* Border & radius */
.u-rounded-sm { border-radius: var(--radius-sm); }
.u-rounded-md { border-radius: var(--radius-md); }
.u-rounded-lg { border-radius: var(--radius-lg); }
.u-border { border: 1px solid var(--light-green); }
.u-border-primary { border: 2px solid var(--primary-color); }

/* Shadows */
.u-shadow-light { box-shadow: var(--shadow-light); }
.u-shadow-medium { box-shadow: var(--shadow-medium); }

/* Button utilities */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary { background: var(--primary-color); color: var(--white-color); }
.btn-secondary { background: var(--secondary-color); color: var(--white-color); }
.btn-warning { background: var(--warning-color); color: var(--white-color); }
.btn-outline { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }

/* Badge utilities */
.badge { display: inline-block; padding: 0.3rem 0.8rem; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; }
.badge-success { background: var(--success-color); color: var(--white-color); }
.badge-warning { background: var(--warning-color); color: var(--white-color); }
.badge-info { background: var(--info-color); color: var(--white-color); }
.badge-secondary { background: var(--secondary-color); color: var(--white-color); }

/* Card utilities */
.card-base { background: var(--white-color); border-radius: var(--radius-md); box-shadow: var(--shadow-light); transition: var(--transition); }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* Responsive variants (escape colon in class names) */
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:px-md { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
  .md\:py-md { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
}

@media (min-width: 992px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:px-lg { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
  .lg\:py-lg { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
}

.container-full {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}


/* HEADER */
.header-flex {
  display: flex;
  justify-content: space-between;
  gap: var(--header-gap);
  align-items: center;
  padding: 0.25rem 1.5rem;
  width: 100%;
  z-index: 100;
  min-height: 80px;
  background-color: var(--white-color);
  border-bottom: 3px solid var(--primary-color);
 
  position: sticky;
  top: 0;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary-color);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

header.nav-open .menu-toggle .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

header.nav-open .menu-toggle .bar:nth-child(2) {
  opacity: 0;
}

header.nav-open .menu-toggle .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ==========================================================================
   INFORMATION PAGES BACKGROUND
   ========================================================================== */

/* Background for Activities and Laws pages */
.information-page-background {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e8 50%, #f5f5f5 100%),
              radial-gradient(circle at 20% 80%, rgba(86, 183, 74, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(6, 90, 5, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

/* ==========================================================================
   LAWS PAGE STYLES
   ========================================================================== */

/* Laws Content Section */
.laws-content {
  padding: 1rem 0;
  background: linear-gradient(to bottom, var(--white-color), var(--light-green));
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  margin-bottom: 2rem;
}

.laws-content .container {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  width: 100%;
}

.law-section {
  margin-bottom: 2rem;
  background: var(--white-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  width: 100%;
}

/* Grid Layouts */
.responsibilities-grid,
.business-obligations,
.obligations-grid {
  max-width: var(--container-lg);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.summary-content,
.challenges-grid,
.recycling-priorities,
.sanctions-list {
  max-width: var(--container-normal);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.law-section:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.section-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--light-green);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.section-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--white-color);
  font-size: 1.5rem;
}

.section-header h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
}

/* Primary  */
.primary-law {
  background: var(--light-green);
  border-radius: var(--radius-md);
  border-left: 10px solid var(--primary-color);
  padding: 0.5rem;
}

.primary-law h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.law-list {
  list-style: none;
  margin: 1.5rem 0;
}

.law-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.law-list li i {
  color: var(--success-color);
  margin-right: 0.8rem;
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.law-note {
  background: var(--info-color);
  color: var(--white-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.law-note i {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Responsibilities Grid */
.responsibilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.responsibility-card {
  background: var(--white-color);
  border: 2px solid var(--light-green);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.responsibility-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card-header {
  background: var(--gradient-primary);
  color: var(--white-color);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-header i {
  font-size: 1.8rem;
}

.card-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.card-content {
  padding: 1rem;
}

.card-content p {
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--primary-color);
}

.card-content ul {
  list-style: none;
}

.card-content ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--light-green);
}

.card-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.card-content ul li:last-child {
  border-bottom: none;
}

/* Obligations Grid */
.obligations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.obligation-item {
  background: var(--white-color);
  border: 2px solid var(--light-green);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.obligation-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.obligation-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white-color);
  font-size: 2rem;
}

.obligation-item h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Business Obligations */
.business-obligations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.obligation-card {
  background: var(--white-color);
  border: 1px solid var(--secondary-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(6, 90, 5, 0.1);
}

.obligation-card:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.obligation-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.obligation-card:hover i {
  color: var(--white-color);
}

.obligation-card h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.obligation-card:hover h4 {
  color: var(--white-color);
}

/* Recycling Priorities */
.recycling-priorities {
  margin-top: 1rem;
}

.priority-item {
  display: flex;
  align-items: center;
  background: var(--white-color);
  border: 2px solid var(--light-green);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.priority-item:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-light);
}

.priority-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.priority-content h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.encouragement-note {
  background: var(--accent-color);
  color: var(--white-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.encouragement-note i {
  font-size: 1.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Sanctions Content */
.sanctions-intro {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.sanctions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.sanction-item {
  background: var(--warning-color);
  color: var(--white-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.sanction-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.sanction-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.sanction-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* Challenges Grid */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.challenge-card {
  border-radius: var(--radius-md);
  padding: 2rem;
  color: var(--white-color);
}

.challenge-current {
  background: linear-gradient(135deg, var(--warning-color), #f57c00);
}

.challenge-future {
  background: linear-gradient(135deg, var(--success-color), var(--secondary-color));
}

.challenge-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.challenge-card ul {
  list-style: none;
}

.challenge-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.challenge-card ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Summary Section */
.summary-section {
  background: linear-gradient(135deg, var(--light-green), var(--white-color));
  border: 3px solid var(--primary-color);
}

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

.summary-card {
  background: var(--white-color);
  border: 2px solid var(--secondary-color);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
  transition: var(--transition);
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.summary-card i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: block;
}

/* Call to Action Section */
.cta-section {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--white-color);
  margin: 1rem;
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: var(--light-green);
}

.header__left-section {
  display: flex;
  align-items: center;
  justify-content:space-between;
  flex-shrink: 0;
  margin-left: 2rem;
}

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

.header__logo-image {
  width: 80px;
  height: 60px;
  object-fit: contain;
}

.header__logo-text{
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 1px;
  white-space: nowrap;
  margin: 0;
}

.header__right-section {
  display: flex;
  align-items: center;
  gap: var(--header-gap);
  justify-content: space-between;
  flex-shrink: 0;
  margin-right: 1rem
}

.menu__body{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
}
.menu__list{
  display: flex;
  gap: 1rem;
  align-items: center;
}
.menu__item{
  list-style: none;
}


.menu__link{
  font-size: var(--font-md);
  font-weight: 600;
  color:var(--primary-color);
  padding: 0.5rem 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.menu__link:hover{
  background-color:var(--primary-color);
  color:var(--white-color);
  border-radius: 5px;
  transition: all 1s ease;
  }

.menu__link.active{ 
  border-radius: 5px;
  padding: 0.5rem 0.5rem;
  border: 3px solid var(--primary-color);
  transition: all 1s ease;
}

/* Dropdown Menu Styles */
.menu__item--has-dropdown {
  position: relative; 
}

.menu__item--has-dropdown .menu__link .dropdown-arrow {
  display: inline-block;
  font-size: 1.18em; /* slightly larger */
  margin-left: 4px; /* closer to title */
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.25s ease, color 0.25s ease;
  cursor: pointer;
  user-select: none;
}

.submenu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%; 
  left: 0;
  background-color: var(--white-color); 
  border: 1px solid var(--primary-color);
  border-top: none; 
  border-radius: 0 0 5px 5px; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* slightly softer */
  z-index: 1000; 
  min-width: 250px; 
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px); 
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* Open state via JS-controlled class instead of hover */
.menu__item--has-dropdown.open > .submenu__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate caret when open for clear feedback */
.menu__item--has-dropdown.open .menu__link .dropdown-arrow {
  transform: rotate(180deg);
}

.submenu__link {
  display: block;
  padding: 0.75rem 1rem; 
  font-size: 0.95rem; /* slightly toned down */
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  white-space: nowrap; 
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Header Payment Message */
.header-payment-message {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(6, 90, 5, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-payment-message:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 90, 5, 0.3);
}

.payment-text {
  color: var(--white-color);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/*FOOTER*/
.footer-flex {
  background-color: var(--white-color);
  color: var(--primary-color);
  border-top: 2px solid var(--primary-color);
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.footer-column {
  padding: 0.25rem 0.75rem;
  text-align: center;
  min-width: 160px;
}

.footer-credit p,
.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-credit a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 700;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.social-links-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.social-link i {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

  .social-link:hover i {
  opacity: 1;
  transform: scale(1.3);
}

.mobile-break {
  display: none; 
}




/* URGENT SERVICE BUTTON */
.urgent-service-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.urgent-service-btn {
  background-color: rgba(255, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  max-width: calc(100vw - 3rem);
}

.urgent-service-btn:hover {
  background-color: #A00000; 
  transform: scale(1.05);
}

.urgent-service-btn .contact-arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.urgent-service-container.active .contact-arrow {
  transform: rotate(180deg);
}

/* CONTACT OPTIONS DROPDOWN */
.contact-options {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.urgent-service-container.active .contact-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.contact-option:hover {
  background-color: #f5f5f5;
}

.contact-option.whatsapp:hover {
  background-color: #e8f5e8;
  color: #25D366;
}

.contact-option.viber:hover {
  background-color: #f3e8ff;
  color: #665CAC;
}

.contact-option i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.contact-option.whatsapp i {
  color: #25D366;
}

.contact-option.viber i {
  color: #665CAC;
}


/* HERO */
.hero-section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* INDEX PAGE */
/* HERO SECTION - FOR ALL PAGES*/
.hero-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1rem;
  color: var(--primary-color);
  background-color: var(--white-color);
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 8px rgba(6, 90, 5, 0.1), 0 6px 20px rgba(6, 90, 5, 0.5);
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.hero-caption{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-text-color);
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.hero-title{
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  width: 100%;
  padding: 0 0.5rem;
  
}
.hero-text{
  font-size: 1em;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.hero-button{
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 0.9rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 4px rgba(6, 90, 5, 0.15);
}
.hero-button:hover{
  background-color: rgba(6, 90, 5, 0.85); /* Primary color with 85% opacity */
  color: var(--white-color);
  border-color: rgba(6, 90, 5, 0.5); /* Match background opacity */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(6, 90, 5, 0.2);
} 

/* SERVICE HIGHLIGHTS SECTION - FOR INDEX PAGE*/
.service-highlights{
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 8px rgba(6, 90, 5, 0.1), 0 6px 20px rgba(6, 90, 5, 0.5);
  padding: 2rem;
  margin: 2rem auto; 
  max-width: 1200px; 
  text-align: center; 
  backdrop-filter: blur(10px);
}

.service-highlights .section-title,
.service-coverage .section-title {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
 }


.service-cards {
  display: flex;
  justify-content: space-around;
  align-items: flex-start; 
  flex-wrap: wrap; 
  gap: 0.5rem; 
 }

.card {
  flex-basis: calc((100% - 1rem) / 3); 
  min-width: 280px; 
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(6, 90, 5, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(6, 90, 5, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(6, 90, 5, 0.2), 0 6px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(6, 90, 5, 0.2);
}

.card:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.card-link-wrapper {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit; 
  height: 100%; 
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.card .card-text {
  padding: 1rem;
}

.card .card-text h3 {
  margin: 0; 
  font-size: 1.1rem;
  color: var(--primary-color); 
}

.card:hover .card-text h3 {
  color: var(--secondary-color); 
}

/* ==========================================================================
   SERVICE COVERAGE SECTION STYLES - CSS Grid Layout
   ========================================================================== */

.service-coverage {
    background: transparent;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(6, 90, 5, 0.1), 0 6px 20px rgba(6, 90, 5, 0.5);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Grid Container */
.coverage-grid-container {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    margin: 1rem 0 0 0;
}

/* Grid Header */
.coverage-grid-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background-color: var(--primary-color);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.header-item {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Coverage Item Cards */
.coverage-item {
    background: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(6, 90, 5, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 220px;
}

.coverage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(6, 90, 5, 0.2);
    border-color: var(--secondary-color);
}

/* Location Info */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(6, 90, 5, 0.1);
}

.location-info strong {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.zone-badge {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    text-transform: capitalize;
    max-width: fit-content;
    margin: 0 auto;
}

.zone-badge.industrial {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
}

.zone-badge.urban {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    border: none;
}

.zone-badge.rural {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: var(--primary-color);
    border: none;
}

/* Client Details */
.client-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    flex-grow: 1;
}

.client-type {
    font-size: 1.05rem;
    color: var(--secondary-text-color);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(6, 90, 5, 0.05);
    border: 1px solid rgba(6, 90, 5, 0.1);
}

.service-item.active {
    background: linear-gradient(135deg, var(--secondary-color), #4CAF50);
    color: white;
    border-color: var(--secondary-color);
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(6, 90, 5, 0.2);
}

.service-icon {
    font-size: 1.4rem;
    display: block;
}

.service-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.service-item.active .service-name {
    color: white;
}




/* SERVICES PAGE STYLES */

.services-page__container {
  display: flex;
  flex-direction: column;
  gap: 2rem; 
  padding: 2rem 20px; 
  max-width: 1200px; 
  margin: 0 auto; 
}

.services-page__item {
  display: flex;
  align-items: center; 
  gap: 2rem; 
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-page__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Alternating layout for service items */
.services-page__item:nth-child(even) .services-page__content {
  order: 1; 
}

.services-page__item:nth-child(even) .services-page__img {
  order: 2; 
}

.services-page__content {
  flex: 1; 
  max-width: 50%; 
}

.services-page__title {
  font-size: var(--font-xl);
  color: #0F5D13; 
  margin-bottom: 1rem;
}

.services-page__text p {
  font-size: var(--font-md);
  line-height: var(--leading-normal);
  margin-bottom: 1rem;
}

.services-page__button {
  display: inline-block;
  background-color: #0F5D13; 
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.services-page__button:hover {
  background-color: #0c4a10; 
}

.services-page__img {
    flex: 1; 
  max-width: 50%;
}

.services-page__image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: repeat(2, 1fr);   
  gap: 1rem; 
}

.services-page__image-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto; 
  object-fit: cover; 
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15); 
}

/* === Special Services Section Styles === */
.special-services {
  padding: 2rem 0; 
}

/* Style the direct .container child of .special-services like a .services-page__item */
.special-services > .container {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 1200px; 
  margin: 0 auto; 
}

.special-services > .container:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.special-services .section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #0F5D13; /* Or var(--primary-color) if defined */
  font-size: 2rem; /* Ensure it's prominent */
}

.special-services-grid {
  display: flex;
  justify-content: space-between; 
  gap: 2rem; 
}

.special-service-card {
  background-color: var(--white-color);
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
  padding: 1.5rem;
  text-align: center;
  flex: 1; 
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.special-service-card .service-icon img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem; 
  box-shadow: 0 8px 10px rgba(0,0,0,0.15); 
}

.special-service-card h3 {
  font-size: 1.5rem;
  color: #0F5D13;
  margin-bottom: 1rem;
}

.special-service-card .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%; 
}

.special-service-card .service-features li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2em; 
  position: relative;
}

/* Custom bullet for features list */
.special-service-card .service-features li::before {
content: '\2713'; 
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 1px;
}

.special-service-card .cta-button {
  display: inline-block;
  background-color: #0F5D13;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-top: auto; 
}

.special-service-card .cta-button:hover {
  background-color: #0c4a10;
}

/* === Service Comparison Table Styles === */
.service-comparison {
  padding: 2rem 0; 
}

.service-comparison > .container {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 1200px; 
  margin: 0 auto; 
}

.service-comparison > .container:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.service-comparison .section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #0F5D13; 
  font-size: 2rem;
}

/* Grid-based comparison replacing table while preserving appearance */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comparison-grid-header {
  display: contents;
}

.comparison-grid-row {
  display: contents;
}

.comparison-grid-cell {
  padding: 0.75rem 1rem;
  background: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
}

.comparison-grid-header-cell {
  background: #0F5D13;
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid #0c4a10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-row-header {
  background: rgba(245, 245, 245, 0.5);
  color: inherit;
  text-align: left;
  justify-content: flex-start;
}

/* zebra striping for rows (skip header) */
.comparison-grid-row:nth-of-type(even) .comparison-grid-cell {
  background-color: rgba(0, 0, 0, 0.03);
}

.service-comparison .check {
  color: #28a745;
  font-weight: bold;
  font-size: 1.2em;
}

.service-comparison .cross {
  color: #dc3545;
  font-weight: bold;
  font-size: 1.2em;
}

.service-comparison .note {
  font-size: 0.85em;
  font-style: italic;
  color: #555;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr; /* Stack into 2 columns on small screens */
  }
  .comparison-grid-header {
    display: none; /* Hide header row on mobile */
  }
  .comparison-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .comparison-row-header {
    background: #0F5D13;
    color: #fff;
    font-weight: 700;
    border-bottom: none;
  }
}

/* ==================================================================
   Mobile navigation collapse (≤992px)
   ================================================================== */
@media (max-width: 992px) {
  .menu-toggle { display: inline-flex; }
  .header-flex { position: sticky; } /* ensure positioning context for absolute menu */
  .menu__body {
    position: absolute;
    top: 80px;
    right: 0;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 0.5rem;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
  }
  .menu__list { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  header.nav-open .menu__body { transform: translateY(0); opacity: 1; visibility: visible; }
}

@media (max-width: 480px) {
  .menu__body { top: 64px; }
}

/* Footer compact tweaks on small screens */
@media (max-width: 768px) {
  .footer-flex { gap: 1.25rem; padding: 0.5rem 0; }
}

/* INFORMATION PAGE STYLES - FAQ Section */
.faq-section {
    padding: 2rem 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Single Column Accordion Layout */
.faq-category-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(6, 90, 5, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-category-card:hover {
    box-shadow: 0 6px 25px rgba(6, 90, 5, 0.15);
}

.faq-category-header {
    background: linear-gradient(135deg, var(--primary-color), #4CAF50);
    color: white;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-category-header:hover {
    background: linear-gradient(135deg, #4CAF50, var(--primary-color));
}

.faq-category-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-items {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-category-card.category-active .faq-items {
    max-height: 2000px;
    padding: 1rem;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-btn:hover {
    background: rgba(6, 90, 5, 0.05);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: 8px;
}

.faq-question-text {
    color: #333;
    font-size: 1.05rem;
    font-weight: 500;
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}

.faq-answer-content {
    padding: 0 0.75rem;
    border-left: 4px solid var(--primary-color);
    margin-left: 0.75rem;
    background: rgba(6, 90, 5, 0.02);
    padding: 1rem;
    border-radius: 8px;
}

.faq-answer-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.faq-answer-content ul {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.faq-answer-content li::marker {
    color: var(--primary-color);
}

/* Highlighted Question for Recycling Payment */
.highlighted-question {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    border: 2px solid #FFD700;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.highlighted-question:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
}

.highlighted-question .faq-question-btn {
    font-weight: 600;
    color: #B8860B;
}

.highlighted-question .faq-question-text {
    font-weight: 700;
}

.highlighted-question .faq-toggle {
    background: #FFD700;
    color: #333;
    font-weight: bold;
    border-color: #FFD700;
}

.highlighted-question.active .faq-toggle {
    background: #FFA500;
    border-color: #FFA500;
}

/* CONTACT PAGE STYLES */
.contact-section {
    width: 100%;
    padding: 0;
}

/* Map open button */
.map-open-button {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(6, 90, 5, 0.2);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.map-open-button:hover {
  background: #0c4a10;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 90, 5, 0.3);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro .contact-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-intro .contact-text {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Split Hero Section */
.contact-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-height: 70vh;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Contact Details Side */
.contact-details-hero {
    background: linear-gradient(135deg, var(--primary-color), #4CAF50);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(6, 90, 5, 0.15);
}

.contact-details-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></svg>');
    background-size: 100px 100px;
}

.contact-details-hero > * {
    position: relative;
    z-index: 1;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item-hero {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: white;
}

.contact-info-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.contact-info-content a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Map Section */
.contact-map-section {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-map-section:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.contact-map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.contact-map-section:hover iframe {
    filter: brightness(1) contrast(1.2);
}

/* Contact Form Side */
.contact-form-hero {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(6, 90, 5, 0.15);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(6, 90, 5, 0.2);
}

.form-title-hero {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.form-subtitle-hero {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
}

.contact-form-hero .form-group {
    margin-bottom: 1.2rem;
    padding-left: 8px;
    border-left: 3px solid var(--primary-color);
    border-radius: 2px;
}

.contact-form-hero label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.contact-form-hero input[type="text"],
.contact-form-hero input[type="email"],
.contact-form-hero textarea {
    width: 100%;
    padding: 0.9rem;
    background-color: #f8f9fa;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}



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

.contact-form-hero .hero-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
    margin-top: 0.5rem;
}

/* ==========================================================================
   SERVICE SUBPAGES STYLES
   ========================================================================== */

.service-page-main {
    padding: 1rem 20px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 60vh;
}

.service-page-hero {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(6, 90, 5, 0.15);
}

.service-page-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* ==========================================================================
   RECYCLING PROCESS SECTION STYLES
   ========================================================================== */

.recycling-process-section {
    margin-bottom: 2rem;
}

.process-container {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
    padding: 2rem;
    transition: var(--transition);
}

.process-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(6, 90, 5, 0.2);
}

.process-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-green);
}

.process-header .section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Process Image Container */
.process-image-container {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem 0;
    padding-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light-green), rgba(255, 255, 255, 0.9));
    border-radius: var(--radius-md);
    border: 1px solid var(--secondary-color);
    width:var(--container-lg);
    margin: 0 auto;
}

.process-flow-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.process-flow-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

/* Process Steps Grid */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step {
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-light);
    color: var(--white-color);
}

/* Different color variants for each step */
.process-step:nth-child(1) {
    background: linear-gradient(135deg, #2E7D32, #43A047);
}

.process-step:nth-child(2) {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
}

.process-step:nth-child(3) {
    background: linear-gradient(135deg, #7B1FA2, #AB47BC);
}

.process-step:nth-child(4) {
    background: linear-gradient(135deg, #F57C00, #FFB74D);
}

.process-step:nth-child(5) {
    background: linear-gradient(135deg, #388E3C, #66BB6A);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.process-step:nth-child(6) {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

/* Environmental badge for green processes */
.process-step:nth-child(5)::before,
.process-step:nth-child(6)::before {
    content: "";
    position: absolute;
    top: -25px;
    right: -25px;
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    background-image: url('../01_assets/images/logo.png');
    background-size: 60px 45px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(46, 125, 50, 0.8);
    border: 4px solid #FFFFFF;
    animation: pulse-eco 2s infinite;
    z-index: 10;
}

@keyframes pulse-eco {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced hover effects for different cards */
.process-step:nth-child(1):hover {
    box-shadow: 0 12px 32px rgba(46, 125, 50, 0.4);
}

.process-step:nth-child(2):hover {
    box-shadow: 0 12px 32px rgba(25, 118, 210, 0.4);
}

.process-step:nth-child(3):hover {
    box-shadow: 0 12px 32px rgba(123, 31, 162, 0.4);
}

.process-step:nth-child(4):hover {
    box-shadow: 0 12px 32px rgba(245, 124, 0, 0.4);
}

.process-step:nth-child(5):hover {
    box-shadow: 0 12px 32px rgba(56, 142, 60, 0.5);
    transform: translateY(-10px);
}

.process-step:nth-child(6):hover {
    box-shadow: 0 12px 32px rgba(46, 125, 50, 0.5);
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.process-step h4 {
    color: var(--white-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-step p {
    color: var(--white-color);
    line-height: 1.2;
    font-size: 1rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Process Benefits Section */
.process-benefits {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-green);
}

.process-benefits h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.benefit-item {
    background: linear-gradient(135deg, var(--light-green), rgba(255, 255, 255, 0.8));
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.benefit-item:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.benefit-item:hover i {
    color: var(--white-color);
    transform: scale(1.1);
}

.benefit-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.benefit-item:hover h4 {
    color: var(--white-color);
}

.benefit-item p {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 0.95rem;
    transition: var(--transition);
}

.benefit-item:hover p {
    color: var(--white-color);
}

/* ==========================================================================
   PRICING PAGE - NEW TABLE STYLES
   ========================================================================== */

.pricing-table-section {
    padding: 1rem 20px;
}

.pricing-table-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--white-color);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(6, 90, 5, 0.15);
    margin-bottom: 1rem;
}

.pricing-table-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(6, 90, 5, 0.2);
}

.pricing-table-header,
.pricing-table-cell {
    padding: 0.8rem 0.6rem;
    background-color: #fff;
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
}

.pricing-table-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table-row {
    display: contents;
}

.pricing-table-row:nth-child(odd) .pricing-table-cell {
    background-color: #f8f9fa;
}

.pricing-table-row:nth-child(even) .pricing-table-cell {
    background-color: #ffffff;
}

.pricing-table-row:hover .pricing-table-cell {
    background-color: #e8f5e8;
    transform: scale(1.02);
    transition: all 0.2s ease;
}

.pricing-table-cell {
    border: none;
    font-size: 1rem;
    line-height: 1.3;
}

.pricing-table-cell[data-label="Tarifa"] {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing-table-cell[data-label="Kategoria"] {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.pricing-note {
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: rgba(86, 183, 74, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ==========================================================================
   Blog-Style Posts Section
   ========================================================================== */


.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: var(--container-xxl);
  margin-left: auto;
  margin-right: auto;
}

.blog-post {
  background: var(--white-color);
  border: 1px solid var(--light-green);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.blog-post:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
  border-color: var(--secondary-color);
}

.blog-post.featured {
  grid-column: span 2;
  border-left: 4px solid var(--success-color);
  background: var(--white-color);
}

/* Post Meta */
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-green);
}

.date {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.category {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
}

.category.laws {
  background: var(--success-color);
  color: var(--white-color);
}

.category.notice {
  background: var(--warning-color);
  color: var(--white-color);
}

.category.activity {
  background: var(--info-color);
  color: var(--white-color);
}

.category.info {
  background: var(--secondary-color);
  color: var(--white-color);
}

/* Post Content */
.blog-post h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-excerpt {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.post-excerpt p {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

.post-image {
  margin: 1rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 200px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

/* Expandable Content */
.post-content {
  margin-top: 1rem;
  animation: slideDown 0.3s ease-out;
}

.post-content.hidden {
  display: none;
}

.post-content h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem 0;
}

.post-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.post-content ul {
  list-style: none;
  margin: 1rem 0;
}

.post-content ul li {
  padding: 0.3rem 0;
  color: var(--text-color);
}

/* Contact Highlight in Posts */
.post-content .contact-highlight {
  background: var(--light-green);
  color: var(--primary-color);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin: 1rem 0;
  text-align: center;
  font-weight: 600;
}

/* Penalty Table */
.penalty-table {
  background: var(--light-green);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin: 1rem 0;
}

.penalty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(6, 90, 5, 0.1);
}

.penalty-row:last-child {
  border-bottom: none;
}

.violation {
  color: var(--primary-color);
  font-weight: 500;
  flex: 1;
}

.fine {
  background: var(--warning-color);
  color: var(--white-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Post Footer */
.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--light-green);
  margin-top: auto;
  gap: 1rem;
}

.read-more {
  background: var(--secondary-color);
  color: var(--white-color);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.read-more:hover {
  background: var(--primary-color);
  transform: translateY(-1px);
}

.read-more.expanded {
  background: var(--warning-color);
}

.read-more.expanded::after {
  content: ' ↑';
}

/* Post Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* View More Section */
.view-more-section {
  text-align: center;
  margin: 2rem;
}

.facebook-page-button {
  background: linear-gradient(135deg, #1877F2, #42A5F5);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.facebook-page-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
  background: linear-gradient(135deg, #1565C0, #1877F2);
}

.facebook-page-button i {
  font-size: 1.2rem;
}

/* Facebook Link in Post Footer */
.facebook-link {
  background: linear-gradient(135deg, #1877F2, #42A5F5);
  color: var(--white-color);
  padding: 0.6rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.facebook-link:hover {
  background: linear-gradient(135deg, #1565C0, #1877F2);
  transform: translateY(-1px);
}

.facebook-link i {
  font-size: 0.9rem;
}

/* Individual Tags */
.tag {
  background: var(--light-green);
  color: var(--primary-color);
  padding: 0.25rem 0.6rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--secondary-color);
  transition: var(--transition);
}

.tag:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  transform: translateY(-1px);
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
  }
  to {
    opacity: 1;
    max-height: 1000px;
    padding-top: 1rem;
  }
}

/* ==========================================================================
   Landscaping Service Page Styles
   ========================================================================== */

/* Landscaping Service Section */
.landscaping-service-section {
    padding: 2rem 0;
}

.landscaping-areas-section {
    margin: 3rem 0;
}

.landscaping-areas-section h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Landscaping Cards Grid */
.landscaping-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.landscaping-item {
    text-align: center;
}

.landscaping-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.landscaping-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.landscaping-text {
    margin-top: 1rem;
}

.landscaping-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.landscaping-text p {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Actions Section */
.landscaping-actions {
    margin: 3rem 0;
}

.landscaping-actions h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.action-item {
    background: linear-gradient(135deg, var(--light-green), rgba(255, 255, 255, 0.9));
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.action-item:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.action-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.action-item p {
    line-height: 1.5;
    font-size: 0.9rem;
}

.action-item:hover h4,
.action-item:hover p {
    color: var(--white-color);
}

/* Benefits Section for Landscaping */
.landscaping-benefits {
    margin: 3rem 0;
}

.landscaping-benefits h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Hazardous Waste Page Styles */
.hazardous-image {
    margin: 1rem 0;
    text-align: center;
}

.waste-type-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.waste-type-image:hover {
    box-shadow: var(--shadow-medium);
    transform: scale(1.02);
}

/* Enhanced styling for hazardous waste cards */
.responsibility-card .hazardous-image {
    border-top: 2px solid var(--light-green);
    padding-top: 1rem;
}

/* Safety highlighting */
.law-section .section-icon i.fa-radiation,
.law-section .section-icon i.fa-shield-alt,
.law-section .section-icon i.fa-certificate {
    color: var(--warning-color);
}

/* Emergency contact styling */
.law-note i.fa-exclamation-triangle {
    color: var(--warning-color);
    margin-right: 0.5rem;
}

/* ==================================================================
   Responsive: centralized breakpoint overrides
   Breakpoints: ≤1200px, ≤992px, ≤768px, ≤480px
   ================================================================== */

/* ≤1200px (lg and below) */
@media (max-width: 1200px) {
  .header-flex { gap: 2rem; }
  .header__right-section { gap: 2rem; }

  /* Process steps: 3 → 2 columns */
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ≤992px (md and below) */
@media (max-width: 992px) {
  /* Header adjustments */
  .header__logo-image { width: 64px; height: 48px; }
  .header__logo-text { font-size: 1.6rem; }
  .menu__list { gap: 0.5rem; flex-wrap: wrap; }

  /* Services page: side-by-side → stacked */
  .services-page__item { flex-direction: column; }
  .services-page__content,
  .services-page__img { max-width: 100%; }

  /* Special services: row → column */
  .special-services-grid { flex-direction: column; }

  /* Contact hero: 2 cols → 1 col */
  .contact-hero-section { grid-template-columns: 1fr; }

  /* Process image container: avoid overflow */
  .process-image-container { width: auto; padding: 1rem 0; }
}

/* ≤768px (sm and below) */
@media (max-width: 768px) {
  .hero-container { padding: 0.75rem; margin-top: 1rem; margin-bottom: 1rem; }
  .footer-flex { gap: 0.5rem; padding: 0.25rem 0; }

  /* Move header content left on small screens */
  .header-flex { padding: 0.35rem 0.5rem; gap: 0.75rem; }
  .header__left-section { margin-left: 0.25rem; }
  .header__right-section { gap: 0.5rem; margin-right: 0; }
  .header__logo-text { font-size: 1.4rem; }
  .header-payment-message { padding: 0.3rem 0.6rem; }

  /* Services gallery: 2 → 1 column */
  .services-page__image-gallery { grid-template-columns: 1fr; }

  /* Coverage grid: tighter min width */
  .coverage-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

  /* Cards: adjust aspect ratio for small screens */
  .card img { aspect-ratio: 16 / 9; }

  /* Landscaping & Actions: 2 → 1 column */
  .landscaping-grid,
  .actions-grid { grid-template-columns: 1fr; }

  /* Process steps: 2 → 1 column */
  .process-steps-grid { grid-template-columns: 1fr; }
}

/* ≤480px (xs) */
@media (max-width: 480px) {
  .header-flex { padding: 0.2rem 0.35rem; gap: 0.35rem; }
  .header__right-section { gap: 0.4rem; margin-right: 0; }
  .header-payment-message { display: none; }

  /* Shift logo and hamburger left for visibility */
  .header__left-section { margin-left: 0.15rem; }
  .header__logo-image { width: 54px; height: 42px; }
  .header__logo-text { font-size: 1.2rem; }
  .menu-toggle { margin-left: 0; }

  .services-page__item { padding: 1rem; gap: 1rem; }
  .menu__list { gap: 0.25rem; }
  /* Phones & small tablets: put the red button bottom-left and above the menu */
  .urgent-service-container{
    position: fixed;
    inset-block-end: max(0.75rem, env(safe-area-inset-bottom));
    inset-inline-start: max(0.75rem, env(safe-area-inset-left)); /* LEFT side */
    inset-inline-end: auto; /* kill any right: rules */
    z-index: 2000; /* menu__body is z-index:1000 */
  }
  .urgent-service-btn {
    font-size: 12px;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    max-width: calc(100vw - 1.5rem);
    overflow: hidden;
  }
  /* Make the dropdown open inward from the left when the FAB is on the left */
  .urgent-service-container .contact-options{
    left: 0;
    right: auto;
    transform-origin: bottom left;
  }
  .urgent-service-btn i { font-size: 12px; }
  .urgent-service-btn .contact-arrow { font-size: 10px; }
}

/* Ultra-small devices: turn urgent button into a circular FAB */
@media (max-width: 380px) {
  .urgent-service-container{
    inset-inline-start: max(0.5rem, env(safe-area-inset-left));
    inset-inline-end: auto;
  }
  .urgent-service-btn {
    width: 54px;
    height: 54px;
    padding: 0.6rem;
    border-radius: 9999px;
    justify-content: center;
    font-size: 0; /* hide plain text, keep icons sized via their own rule */
    max-width: none;
  }
  .urgent-service-btn i { font-size: 20px; }
  .urgent-service-btn .contact-arrow { display: none; }
}

/* Align urgent button with main content/container edge on smartphones */
@media (max-width: 768px) {
  :root {
    /* Horizontal offset to the content edge: container side gutters */
    --content-x-offset: calc(
      max(0px, (100vw - var(--container-normal)) / 2) + var(--spacing-sm)
    );
  }
  .urgent-service-container {
    right: calc(var(--content-x-offset) + env(safe-area-inset-right));
  }
}

@media (max-width: 480px) {
  .urgent-service-container {
    right: calc(var(--content-x-offset) + env(safe-area-inset-right));
  }
}