/* ============================================
   RUDRA INDUSTRIES – Global Styles
   Brand Colors: Blue #2B3990 | Purple #7B2D8E | Green #006838
   ============================================ */

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

:root {
  --brand: #2B3990;
  --brand-dark: #1e2a6e;
  --brand-light: #e8ebf7;
  --brand-purple: #7B2D8E;
  --brand-purple-light: #f3e8f7;
  --brand-green: #006838;
  --brand-green-light: #e6f5ee;
  --text-dark: #1a1a2e;
  --text-body: #4a4a6a;
  --text-muted: #8888aa;
  --bg-white: #ffffff;
  --bg-light: #f5f6fa;
  --bg-blue-tint: #f0f2fa;
  --bg-purple-tint: #f6f0fa;
  --bg-green-tint: #eef8f2;
  --border: #e2e5f0;
  --shadow-sm: 0 2px 12px rgba(43, 57, 144, 0.07);
  --shadow-md: 0 6px 28px rgba(43, 57, 144, 0.12);
  --shadow-purple: 0 6px 28px rgba(123, 45, 142, 0.12);
  --shadow-green: 0 6px 28px rgba(0, 104, 56, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
  cursor: none;
}

/* Restore default cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  body {
    cursor: auto;
  }
}

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

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

ul {
  list-style: none;
}

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

.section {
  padding: 90px 0;
  position: relative;
}

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

.bg-blue-tint {
  background: var(--bg-blue-tint);
}

.bg-purple-tint {
  background: var(--bg-purple-tint);
}

.bg-green-tint {
  background: var(--bg-green-tint);
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.15rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.section-label.label-purple {
  color: var(--brand-purple);
}

.section-label.label-green {
  color: var(--brand-green);
}

.section-title {
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
  font-weight: 600;
}

.btn-white:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  padding: 10px 0;
  box-shadow: 0 1px 20px rgba(30, 64, 175, 0.06);
  border-bottom: 1px solid rgba(30, 64, 175, 0.04);
}

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

.logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all var(--transition);
}

.navbar.scrolled .logo img {
  filter: none;
  height: 64px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width var(--transition);
}

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

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

.navbar.scrolled .nav-links a.active {
  color: var(--brand);
}

.nav-cta {
  margin-left: 1rem;
}

.nav-cta .btn {
  padding: 9px 20px;
  font-size: 0.8rem;
}

.menu-close {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 42, 110, 0.85) 0%, rgba(123, 45, 142, 0.45) 50%, rgba(0, 104, 56, 0.35) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 80px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-content h1 {
  color: #fff;
  margin: 0.4rem 0 0.6rem;
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  border-top: 3px solid transparent;
  position: relative;
}

.service-card:nth-child(1) { border-top-color: var(--brand); }
.service-card:nth-child(2) { border-top-color: var(--brand-purple); }
.service-card:nth-child(3) { border-top-color: var(--brand-green); }
.service-card:nth-child(4) { border-top-color: var(--brand); }

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:nth-child(1):hover { border-top-color: var(--brand); box-shadow: var(--shadow-md); }
.service-card:nth-child(2):hover { border-top-color: var(--brand-purple); box-shadow: var(--shadow-purple); }
.service-card:nth-child(3):hover { border-top-color: var(--brand-green); box-shadow: var(--shadow-green); }
.service-card:nth-child(4):hover { border-top-color: var(--brand); box-shadow: var(--shadow-md); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--brand);
  transition: all var(--transition);
}

.service-card:nth-child(2) .service-icon {
  background: var(--brand-purple-light);
  color: var(--brand-purple);
}

.service-card:nth-child(3) .service-icon {
  background: var(--brand-green-light);
  color: var(--brand-green);
}

.service-card:hover .service-icon {
  color: #fff;
}

.service-card:nth-child(1):hover .service-icon { background: var(--brand); }
.service-card:nth-child(2):hover .service-icon { background: var(--brand-purple); }
.service-card:nth-child(3):hover .service-icon { background: var(--brand-green); }
.service-card:nth-child(4):hover .service-icon { background: var(--brand); }

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- STATS ---- */
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-green);
}

.stat-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 500;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

/* ---- INDUSTRIES ---- */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.industry-item {
  flex: 0 1 calc(25% - 1.5rem);
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition);
  cursor: default;
  border-bottom: 3px solid transparent;
}

.industry-item:nth-child(odd) { border-bottom-color: var(--brand-purple); }
.industry-item:nth-child(even) { border-bottom-color: var(--brand-green); }

.industry-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform var(--transition);
}

.industry-item:nth-child(odd):hover {
  border-color: var(--brand-purple);
  border-bottom-color: var(--brand-purple);
  box-shadow: var(--shadow-purple);
  transform: translateY(-3px);
}

.industry-item:nth-child(even):hover {
  border-color: var(--brand-green);
  border-bottom-color: var(--brand-green);
  box-shadow: var(--shadow-green);
  transform: translateY(-3px);
}

.industry-item:hover img {
  transform: scale(1.15);
}

/* ---- PRODUCTS GRID (GLOBAL) ---- */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.product-card {
  flex: 0 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
}

.product-card:nth-child(1):hover { box-shadow: var(--shadow-md); }
.product-card:nth-child(2):hover { box-shadow: var(--shadow-purple); }
.product-card:nth-child(3):hover { box-shadow: var(--shadow-green); }
.product-card:nth-child(4):hover { box-shadow: var(--shadow-md); }
.product-card:nth-child(5):hover { box-shadow: var(--shadow-purple); }

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

.product-img {
  height: 220px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1.25rem;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.product-img-large {
  padding: 0.5rem !important;
  background-size: 140% !important;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-info {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
}

.product-info h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.product-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.product-card:nth-child(1) .link-arrow { color: var(--brand); }
.product-card:nth-child(2) .link-arrow { color: var(--brand-purple); }
.product-card:nth-child(3) .link-arrow { color: var(--brand-green); }
.product-card:nth-child(4) .link-arrow { color: var(--brand); }
.product-card:nth-child(5) .link-arrow { color: var(--brand-purple); }

@media (max-width: 992px) {
  .product-card {
    flex: 0 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 600px) {
  .product-card {
    flex: 1 1 100%;
  }
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.quote-icon {
  color: var(--brand-green);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-purple) 60%, #9b3dbd 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,104,56,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ---- ABOUT STRIP (Home & About) ---- */
.about-strip {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.about-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-purple), var(--brand-green));
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-strip-text p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-strip-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-strip-stats .stat-card {
  background: #fff;
  padding: 2rem 1.5rem;
}

@media (max-width: 900px) {
  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ---- FOOTER ---- */
.footer {
  background: linear-gradient(180deg, #0d1730 0%, #0a0f22 100%);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 70px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-purple), var(--brand-green), var(--brand-purple), var(--brand));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 50px;
}

.footer-logo {
  height: 80px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.social-links a:nth-child(2):hover {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
}

.social-links a:nth-child(4):hover {
  background: linear-gradient(135deg, var(--brand-purple) 0%, #c13584 50%, #e95950 100%);
  border-color: var(--brand-purple);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.footer-contact i {
  color: var(--brand-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact li:nth-child(2) i {
  color: var(--brand-purple);
}

.footer-contact li:nth-child(3) i,
.footer-contact li:nth-child(4) i {
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.footer-bottom .devphant {
  color: var(--brand-green);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-bottom .devphant:hover {
  color: #059669;
}

/* WhatsApp social icon */
.social-links a.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

/* ---- LINK ARROW ---- */
.link-arrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.link-arrow:hover {
  gap: 10px;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ---- BRAND COLORS ---- */
.text-purple {
  color: var(--brand-purple);
}

.text-green {
  color: var(--brand-green);
}

.bg-purple {
  background-color: var(--brand-purple);
}

.bg-green {
  background-color: var(--brand-green);
}

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ---- PRELOADER ---- */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  height: 180px;
  width: auto;
  object-fit: contain;
  margin-bottom: 30px;
  animation: logoPulse 2s infinite ease-in-out;
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--brand-light);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- FADE UP (hero) ---- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- MOBILE CTA ---- */
.mobile-nav-cta {
  display: none;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .mobile-nav-cta {
    display: block;
  }
  
  .mobile-nav-cta .btn {
    width: max-content;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: #fff !important;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 2000;
    padding: 100px 40px;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    border-left: 1px solid var(--border);
    margin: 0;
  }

  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
  }

  .nav-links a:hover {
    color: var(--brand);
  }

  .menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--brand-light);
    color: var(--brand);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .menu-close:hover {
    background: var(--brand);
    color: #fff;
    transform: rotate(90deg);
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 23, 48, 0.4);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hamburger {
    display: flex;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero {
    height: 320px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }

  .nav-cta {
    display: none;
  }
}

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}