/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2rem;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Menu Links */
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #0b1b3a;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* Hover Effect */
.dropdown-menu a:hover {
  background: #f5f7fb;
  color: #007bff;
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-cta a {
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.cta-call {
  background: #2563eb;
}

.cta-whatsapp {
  background: #25D366;
}

.floating-cta a:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .floating-cta {
    right: 10px;
    bottom: 15px;
  }

  .floating-cta a {
    font-size: 12px;
    padding: 10px 14px;
  }
}

table tr:hover {
  background-color: #f1f5f9;
  transition: 0.2s;
}

table th {
  font-weight: 600;
}
.service-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* FAQ CLEAN VERSION */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  color: inherit;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
}

.faq-answer {
  display: none;
  padding-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: "-";
}



:root {
  --bg: #fbfbfc;
  --bg-alt: #ffffff;
  --bg-soft: #f7f7f8;
  --surface: #ffffff;
  --surface-soft: #f9fafb;
  --accent: #e02727;
  --accent-soft: rgba(224, 39, 39, 0.12);
  --accent-strong: #b81515;
  --text: #111827;
  --muted: #6b7280;
  --border-subtle: rgba(209, 213, 219, 1);
  --danger: #f97373;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
 radial-gradient(circle at top left, #ffffff 0, var(--bg) 60%),
 radial-gradient(circle at bottom right, #ffffff 0, var(--bg-soft) 70%);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.98)
  );
  border-bottom: 1px solid rgba(229, 231, 235, 1);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo-image {
  height: 80px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  font-size: 1.5rem;
  /* letter-spacing: 0.16em; */
  text-transform: uppercase;
  color: var(--accent);
}

.logo-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}

.header-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 260px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  opacity: 0.85;
}

.header-inner {
  position: relative;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), var(--accent-strong));
  transition: width 0.18s ease;
}

.nav a:hover {
  /* color: #e5f2ff; */
  transform: translateY(-1px);
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  gap: 0.4rem;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(220, 38, 38, 0.38);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 55px rgba(30, 64, 175, 0.7);
}

.btn-outline {
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(248, 250, 252, 1);
  border-color: rgba(248, 113, 113, 0.9);
  color: var(--accent-strong);
}

.btn-compact {
  padding-inline: 1rem;
  padding-block: 0.6rem;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 1) 0, var(--bg) 60%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 1) 0, var(--bg-soft) 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 4vw, 4.1rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  margin: 0 0 1.7rem;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.highlight-item {
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(254, 242, 242, 0.95);
  border: 1px solid rgba(254, 202, 202, 1);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.28);
}

.highlight-number {
  font-weight: 700;
  font-size: 1.15rem;
}

.highlight-label {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 231, 235, 1);
  background: #000;
  position: relative;
}

/* .hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.1)
  );
} */

.hero-photo {
  display: block;
  width: 100%;
  height: 320px;
  /* object-fit: cover; */
}

.hero-card {
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 1);
  padding: 1.4rem 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
  border-color: var(--accent);
}

.hero-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
}

.hero-list li {
  padding: 0.45rem 0.6rem;
  margin-bottom: 0.15rem;
  border-radius: 999px;
  background: rgba(254, 242, 242, 0.95);
  border: 1px solid rgba(248, 113, 113, 0.9);
  box-shadow: 0 10px 26px rgba(220, 38, 38, 0.12);
}

.hero-card.secondary {
  background: linear-gradient(135deg, #fef2f2, #ffffff);
  border-style: dashed;
}

.hero-note-title {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-note-subtitle {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-phone {
  margin: 0.55rem 0 0.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #b91c1c;
}

.hero-phone-icon {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 0.45rem;
}

.contact-value-icon {
  display: inline-flex;
  vertical-align: text-bottom;
  margin-right: 0.45rem;
  color: var(--accent);
}

.hero-note-small {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.section {
  padding: 3.5rem 0;
}

.section,
.section-alt,
#services,
#about {
  background: #ffffff;
}

.section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.2rem 1.1rem;
  border: 1px solid rgba(229, 231, 235, 1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border-color: var(--accent);
}

.service-card h3 {
  margin: 0.4rem 0 0.45rem;
  font-size: 1rem;
}

.service-card p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.service-card li {
  margin-bottom: 0.25rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(224, 39, 39, 0.06);
  border: 1px solid rgba(224, 39, 39, 0.25);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
}

.service-icon-blue {
  background-image: url("assets/service-compressor.svg");
}

.service-icon-cyan {
  background-image: url("assets/service-dryer.svg");
}

.service-icon-orange {
  background-image: url("assets/service-piping.svg");
}

.service-icon-green {
  background-image: url("assets/service-fabrication.svg");
}

.service-icon-yellow {
  background-image: url("assets/service-generator.svg");
}

.service-icon-purple {
  background-image: url("assets/service-recycling.svg");
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.industry-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem 0.95rem;
  border: 1px solid rgba(229, 231, 235, 1);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
  border-color: var(--accent);
}

.industry-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(224, 39, 39, 0.06);
  border: 1px solid rgba(224, 39, 39, 0.25);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  margin-bottom: 0.7rem;
}

.industry-icon-automotive {
  background-image: url("assets/industry-automotive.svg");
}

.industry-icon-food {
  background-image: url("assets/industry-food.svg");
}

.industry-icon-pharma {
  background-image: url("assets/industry-pharma.svg");
}

.industry-icon-textile {
  background-image: url("assets/industry-textile.svg");
}

.industry-icon-recycling {
  background-image: url("assets/industry-recycling.svg");
}

.industry-icon-general {
  background-image: url("assets/industry-general.svg");
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-grid > div > p {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-points {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.9rem;
}

.about-point h3 {
  margin: 0 0 0.2rem;
  font-size: 0.96rem;
}

.about-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.about-panel {
  background: radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.16), #ffffff);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.3rem 1.2rem;
  border: 1px solid rgba(229, 231, 235, 1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
}

.about-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  border-color: var(--accent);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat {
  padding: 0.7rem 0.6rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 1);
}

.about-number {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.about-label {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
}

.about-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: #111827;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: #fef2f2;
  border: 1px dashed rgba(248, 113, 113, 0.8);
}

.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-section h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.contact-section p {
  margin-top: 0;
}

.contact-details {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.9rem;
}

.map-wrapper {
  margin-top: 1.2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-icon {
  color: var(--accent);
  flex: 0 0 auto;
}

.contact-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.35rem;
  border: 1px solid rgba(229, 231, 235, 1);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  margin-bottom: 0.9rem;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 1);
  padding: 0.55rem 0.7rem;
  background: #f9fafb;
  color: var(--text);
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.6);
}

.form-success {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #4ade80;
}

.site-footer {
  border-top: 1px solid rgba(229, 231, 235, 1);
  padding: 1.5rem 0 1.8rem;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.footer-secondary {
  max-width: 52rem;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .header-inner {
    gap: 0.75rem;
  }

  .nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  }

  .services-grid,
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-panel {
    order: -1;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 3.2rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-grid,
  .industries-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
