/* BRAND TOKENS */
:root {
  --bg-primary: #0D1B2A;
  --bg-card: #112030;
  --bg-card-hover: #162840;
  --bg-input: #1a2f45;
  --accent: #E85D24;
  --accent-hover: #ff6b30;
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #CBD5E1;
  --border-subtle: rgba(229, 93, 36, 0.2);
  --border-card: rgba(229, 93, 36, 0.25);
  --border-input: #2d4a6a;
  
  --font-family: 'Inter', sans-serif;
  --transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* BASE STYLE & SCROLLBAR */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-heading {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 0 1px rgba(0,0,0,0.5);
  display: inline-block;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(15px, 2.5vw, 17px);
  max-width: 650px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-standard);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--accent);
  color: var(--text-primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* 1. TRUST BAR */
.trust-bar {
  background: var(--accent);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 1000;
  position: relative;
}

.trust-bar a {
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.trust-bar a:hover {
  opacity: 0.8;
}

.trust-right-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-top-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}
.social-top-row a:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* 2. STICKY HEADER */
header.main-header {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 93, 36, 0.2);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition-standard);
}

header.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  background: rgba(13, 27, 42, 0.99);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-gear {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  animation: gear-rotate 10s linear infinite;
}

@keyframes gear-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

nav.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition-standard);
}

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

.header-cta {
  border-radius: 6px;
  padding: 10px 20px;
}

/* ========== HERO ANIMATION KEYFRAMES ========== */
@keyframes hero-tag-in {
  0%   { opacity: 0; transform: translateX(-28px); letter-spacing: 0.3em; }
  60%  { opacity: 1; transform: translateX(4px); }
  100% { opacity: 1; transform: translateX(0); letter-spacing: 0.1em; }
}

@keyframes hero-title-in {
  0%   { opacity: 0; transform: translateY(40px) scale(0.96); }
  50%  { opacity: 1; transform: translateY(-4px) scale(1.01);
         text-shadow: 0 0 40px rgba(232,93,36,0.4), 0 0 80px rgba(232,93,36,0.15); }
  100% { opacity: 1; transform: translateY(0) scale(1); text-shadow: 0 0 1px rgba(0,0,0,0.5); }
}

@keyframes hero-title-shimmer {
  0%   { background-position: -400% center; }
  100% { background-position: 400% center; }
}

@keyframes hero-sub-in {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes hero-btn-pop {
  0%   { opacity: 0; transform: scale(0.8) translateY(10px); }
  70%  { opacity: 1; transform: scale(1.04) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes hero-stats-in {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes hero-grid-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* 3. HERO SECTION */
.hero-section {
  min-height: calc(100vh - 102px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(rgba(13, 27, 42, 0.75), rgba(13, 27, 42, 0.85)), url('images/hero_industrial.png') no-repeat center center/cover;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(229,93,36,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,93,36,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  animation: hero-grid-pulse 8s ease-in-out infinite;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-left: none;
  padding-left: 0;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
  animation: hero-tag-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-tag::after {
  content: '|';
  margin-left: 4px;
  color: var(--accent);
  animation: cursor-blink 1s step-end 0.9s 6;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 30%, #E85D24 45%, #ffb59b 50%, #E85D24 55%, #ffffff 70%, #ffffff 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    hero-title-in      0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both,
    hero-title-shimmer 1.4s linear              1.5s 1 forwards;
}

.hero-title.shimmer-done {
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  color: #FFFFFF;
  text-shadow: 0 0 1px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 24px;
  animation: hero-sub-in 0.7s ease 1.1s both;
}

.hero-ctas {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.hero-ctas .btn {
  border-radius: 8px;
  padding: 16px 32px;
}

.hero-ctas .btn:nth-child(1) {
  animation: hero-btn-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.45s both;
}
.hero-ctas .btn:nth-child(2) {
  animation: hero-btn-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s both;
}

.stats-strip {
  background: rgba(11, 20, 30, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 650px;
  animation: hero-stats-in 0.7s ease 1.85s both;
}

.stat-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.stat-number {
  color: var(--accent);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.stat-label {
  color: #CBD5E1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* 4. PRODUCTS SECTION */
.products-section {
  background-color: #0a1520;
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-standard);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(229,93,36,0.2);
}

.product-image-area {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.image-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #112030, #1a2f45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-fallback svg {
  width: 64px;
  height: 64px;
  stroke: var(--accent);
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.range-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: var(--text-primary);
  border: 1px solid var(--accent);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 8px 0;
  font-weight: 600;
}

.product-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-btn {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--text-primary);
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition-standard);
}

.product-btn:hover {
  background: var(--accent);
  color: var(--text-primary);
}

/* 5. WHY CHOOSE US */
.why-section {
  background-color: var(--bg-primary);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 32px 24px;
  transition: var(--transition-standard);
}

.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.why-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(229,93,36,0.12);
  border: 1px solid rgba(229,93,36,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon-circle span {
  font-size: 22px;
}

.why-card-title {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* 6. INDUSTRIES SECTION */
.industries-section {
  background-color: #0a1520;
  padding: 80px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition-standard);
}

.industry-card:hover {
  background: rgba(229,93,36,0.1);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.industry-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.industry-name {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.industry-desc {
  color: var(--text-muted);
  font-size: 13px;
}

/* 7. INFRASTRUCTURE SECTION */
.infra-section {
  background: linear-gradient(135deg, #0a1520 0%, #0D1B2A 40%, #112030 100%);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.infra-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(229,93,36,0.03) 0px, rgba(229,93,36,0.03) 2px, transparent 2px, transparent 12px);
  pointer-events: none;
}

.infra-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.infra-left {
  max-width: 550px;
}

.infra-left p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 15px;
}

.infra-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.infra-stat-box {
  background: rgba(229,93,36,0.08);
  border: 1px solid rgba(229,93,36,0.2);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  transition: var(--transition-standard);
}

.infra-stat-box:hover {
  border-color: var(--accent);
  background: rgba(229,93,36,0.12);
}

.infra-number {
  color: var(--accent);
  font-size: 36px;
  font-weight: 800;
}

.infra-label {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
}

/* 8. TESTIMONIALS SECTION */
.testimonials-section {
  background-color: var(--bg-primary);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-standard);
}

.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
}

.quote-text {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  position: relative;
}

.quote-text::before {
  content: '“';
  color: var(--accent);
  font-size: 48px;
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}

.testimonial-divider {
  border: none;
  border-top: 1px solid rgba(229,93,36,0.2);
  margin: 20px 0;
}

.client-name {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
}

.client-title {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
}

/* 9. CONTACT SECTION */
.contact-section {
  background-color: #0a1520;
  padding: 80px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 40px 32px;
  border-radius: 12px;
}

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

.form-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  color: var(--text-primary);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  outline: none;
  font-family: var(--font-family);
  transition: var(--transition-standard);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229,93,36,0.15);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFFFFF' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  padding-right: 40px;
}

select.form-control option {
  background-color: var(--bg-input);
  color: var(--text-primary);
}

textarea.form-control {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block {
  display: flex;
  gap: 16px;
}

.info-icon {
  font-size: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-label {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-value {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  white-space: pre-line;
}

.info-value a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.info-value a:hover {
  color: var(--accent);
}

.btn-whatsapp-chat {
  background: #25D366;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  align-self: flex-start;
  transition: var(--transition-standard);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-chat:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.map-frame {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: none;
  filter: grayscale(30%) contrast(110%);
  margin-top: 10px;
}

/* 10. FOOTER */
footer.main-footer {
  background: #060e18;
  border-top: 2px solid var(--accent);
  padding: 60px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-grid.cols-4 {
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-iso-badge {
  display: inline-block;
  background: rgba(229,93,36,0.12);
  border: 1px solid rgba(229,93,36,0.3);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-icon {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition-standard);
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.footer-col-title {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-standard);
  display: inline-block;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-legal {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.2s;
}

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

footer.main-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-standard);
}

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

/* FLOATING BUTTONS */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s;
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

.float-whatsapp:hover {
  transform: scale(1.1);
}

.float-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: 50%;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: -1;
  animation: pulse-ring 1.8s infinite;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  left: 50%;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border: 1px solid var(--border-subtle);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: var(--transition-standard);
}

.float-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.float-quote {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--accent);
  color: white;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(229,93,36,0.5);
  z-index: 999;
  transition: var(--transition-standard);
  display: flex;
  align-items: center;
  gap: 6px;
}

.float-quote:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ANIMATIONS (FADE IN UP) */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* PRODUCT DETAILS MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-primary);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-image-area {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 100%;
  min-height: 250px;
}

.modal-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  display: flex;
  flex-direction: column;
}

.modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.modal-range {
  margin-bottom: 15px;
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.modal-ctas {
  display: flex;
  gap: 15px;
}

/* ADMIN PORTAL STYLING */
#admin-portal {
  min-height: 100vh;
  background: #0D1B2A;
  display: flex;
}

.admin-sidebar {
  width: 250px;
  background: #112030;
  border-right: 1px solid rgba(229, 93, 36, 0.2);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
}

.admin-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.admin-nav-item {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-standard);
}

.admin-nav-item:hover, .admin-nav-item.active {
  background: var(--accent);
  color: var(--text-primary);
}

.admin-content-area {
  margin-left: 250px;
  flex-grow: 1;
  padding: 40px;
  overflow-y: auto;
  min-height: 100vh;
  background-color: var(--bg-primary);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 15px;
}

.admin-page-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

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

.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 24px;
}

.admin-stat-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

.admin-stat-lbl {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 30px;
}

.table-container {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-size: 14px;
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr.unread-row {
  background: rgba(229, 93, 36, 0.04);
}

.admin-table tr.unread-row td {
  color: var(--text-primary);
  font-weight: 600;
}

.admin-prod-thumb {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  background: #0d1b2a;
}

.badge-unread {
  background: rgba(229, 93, 36, 0.15);
  color: var(--accent);
  border: 1px solid var(--border-subtle);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.badge-read {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.btn-icon {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 16px;
  padding: 6px;
  transition: color 0.2s;
}

.btn-icon:hover {
  color: var(--accent);
}

.btn-icon-danger:hover {
  color: #ff3b30;
}

/* Admin Login Screen */
.login-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D1B2A;
}

.login-box {
  width: 100%;
  max-width: 400px;
  background: #112030;
  border: 1px solid var(--border-card);
  padding: 40px;
  border-radius: 12px;
}

.login-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 24px;
}

.login-error {
  color: #ff3b30;
  background: rgba(255,59,48,0.15);
  border: 1px solid rgba(255,59,48,0.3);
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
  text-align: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .infra-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid.cols-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .trust-bar {
    justify-content: center;
    text-align: center;
    padding: 8px 15px;
  }
  nav.nav-menu {
    display: none;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid, .footer-grid.cols-4 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .modal-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .modal-image-area {
    height: 200px;
  }
  .admin-sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  #admin-portal {
    flex-direction: column;
  }
  .admin-content-area {
    margin-left: 0;
    padding: 20px;
  }
}

