@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #07162c;
  --bg-dark-accent: #0f2547;
  --color-primary: #0a2240;
  --color-secondary: #1e3d59;
  --color-accent: #ff1a75; /* Vibrant Strong Pink for CTAs */
  --color-accent-hover: #e6005c;
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20ba5a;
  
  /* Text Colors */
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --text-muted-dark: #64748b;
  --text-muted-light: #94a3b8;

  /* Font Families */
  --font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout and Spacing */
  --container-max-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 37, 71, 0.1), 0 8px 10px -6px rgba(15, 37, 71, 0.1);
  --shadow-lg: 0 20px 40px -15px rgba(15, 37, 71, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}

p {
  color: var(--text-muted-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

.section-bg-alt {
  background-color: var(--bg-secondary);
}

.section-bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-bg-dark h2 {
  color: var(--text-light);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 37, 71, 0.08);
  transition: all var(--transition-normal);
}

header.scrolled {
  background-color: rgba(7, 22, 44, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled .nav-logo {
  color: var(--text-light);
}

header.scrolled .nav-links a {
  color: var(--text-light);
}

header.scrolled .nav-links a::after {
  background-color: var(--text-light);
}

header.scrolled .mobile-menu-btn span {
  background-color: var(--text-light);
}

header.scrolled .cta-btn-nav {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

header.scrolled .cta-btn-nav:hover {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition-normal);
}

header.scrolled .nav-container {
  height: 70px;
}

.nav-logo {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span {
  color: var(--color-accent);
  font-style: italic;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 26, 117, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-light-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-light);
}

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

.cta-btn-nav {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--text-light);
}

.cta-btn-nav:hover {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, #0d284f 0%, #07162c 100%);
  color: var(--text-light);
  padding-top: 100px; /* offset header */
  overflow: hidden;
}

/* Background image carousel slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Premium dark B2B overlay gradient to ensure high readability of text */
.hero-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(13, 40, 79, 0.82) 0%, rgba(7, 22, 44, 0.95) 100%);
  z-index: 2;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 5.5s ease-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 0.35; /* Subtly reveals the high-quality B2B image while keeping text completely readable */
  transform: scale(1);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 61, 89, 0.15) 0%, rgba(7, 22, 44, 0) 70%);
  filter: blur(50px);
}

.hero-shape-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 26, 117, 0.05) 0%, rgba(7, 22, 44, 0) 70%);
  filter: blur(60px);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 3;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 26, 117, 0.1);
  color: var(--color-accent);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 26, 117, 0.2);
}

.hero-tag svg {
  fill: var(--color-accent);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, var(--text-light) 30%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--color-accent);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

/* Technical gear/grid overlay on hero image background */
.hero-graphic {
  width: 100%;
  max-width: 420px;
  height: 420px;
  position: relative;
}

.graphic-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.gc-1 { width: 100%; height: 100%; animation: rotateCW 40s linear infinite; }
.gc-2 { width: 80%; height: 80%; border-style: dotted; animation: rotateCCW 30s linear infinite; }
.gc-3 {
  width: 60%; 
  height: 60%; 
  background: radial-gradient(circle, rgba(30, 61, 89, 0.4) 0%, rgba(7, 22, 44, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-3 svg {
  width: 50%;
  height: 50%;
  fill: var(--color-accent);
  opacity: 0.8;
  filter: drop-shadow(0 0 15px rgba(255, 26, 117, 0.4));
  animation: pulseScale 4s ease-in-out infinite;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: block;
}

.section-bg-dark .section-tag {
  color: var(--color-accent);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
}

/* Value Prop / Intro Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.intro-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.intro-content p.lead {
  font-weight: 500;
  color: var(--color-secondary);
  border-left: 4px solid var(--color-accent);
  padding-left: 1.25rem;
}

.intro-visual {
  position: relative;
  background-color: var(--bg-dark);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-visual::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.05;
  top: -50px;
  right: -50px;
  filter: blur(20px);
}

.express-badge-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  backdrop-filter: blur(8px);
  color: var(--text-light);
}

.badge-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.badge-header svg {
  fill: var(--color-accent);
}

.badge-header h3 {
  color: var(--text-light);
  font-size: 1.25rem;
}

.express-badge-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.express-badge-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.express-badge-card li svg {
  fill: var(--color-accent);
  flex-shrink: 0;
}

/* Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar-card {
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 37, 71, 0.05);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 61, 89, 0.15);
}

.pillar-icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(15, 37, 71, 0.03);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all var(--transition-fast);
}

.pillar-card:hover .pillar-icon-box {
  background-color: var(--color-primary);
}

.pillar-icon-box svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
  transition: all var(--transition-fast);
}

.pillar-card:hover .pillar-icon-box svg {
  fill: var(--color-accent);
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  transition: color var(--transition-fast);
}

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

.pillar-card p {
  font-size: 0.95rem;
}

/* CTA Banner Section */
.cta-banner {
  background: radial-gradient(circle at 10% 100%, #173b64 0%, #07162c 100%);
  border-radius: var(--border-radius-lg);
  padding: 4.5rem 4rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0L40 80M0 40L80 40' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--text-light);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
}

.cta-banner p {
  color: var(--text-muted-light);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Contact Page Core styling */
.contact-hero {
  padding-top: 140px;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
}

.contact-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.contact-card {
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 37, 71, 0.05);
  transition: all var(--transition-normal);
}

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

.contact-card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(15, 37, 71, 0.03);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.contact-card:hover .contact-card-icon {
  background-color: var(--color-primary);
  color: var(--text-light);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-card-detail {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-primary);
  display: block;
  margin-bottom: 1.5rem;
}

/* Contact Form Block styling */
.form-section-container {
  max-width: 750px;
  margin: 0 auto;
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 37, 71, 0.05);
  overflow: hidden;
}

.form-header-bar {
  background-color: var(--color-primary);
  color: var(--text-light);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.form-header-bar h2 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.form-header-bar p {
  color: var(--text-muted-light);
  font-size: 0.95rem;
}

.b2b-contact-form {
  padding: 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.form-label span.req {
  color: #ef4444;
  margin-left: 2px;
}

.form-control {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid #cbd5e1;
  background-color: #fff;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10, 34, 64, 0.1);
}

.form-control.input-error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.form-control.input-success {
  border-color: #22c55e;
  background-color: #f0fdf4;
}

.form-error-msg {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.35rem;
  display: none;
  font-weight: 500;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.form-status-alert {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  display: none;
  text-align: center;
  font-weight: 500;
}

.form-status-alert.success {
  background-color: #dcfce7;
  color: #14532d;
  border: 1px solid #bbf7d0;
  display: block;
}

.form-status-alert.error {
  background-color: #fee2e2;
  color: #7f1d1d;
  border: 1px solid #fecaca;
  display: block;
}

/* Footer Section */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-info-logo {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-info-logo span {
  color: var(--color-accent);
  font-style: italic;
}

.footer-info p {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links-col h4 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.9rem;
}

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

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

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.footer-bottom-links a:hover {
  color: var(--text-light);
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  pointer-events: auto;
}

.whatsapp-icon-btn {
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  color: #fff;
  transition: all var(--transition-fast);
  position: relative;
}

.whatsapp-icon-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid var(--color-whatsapp);
  animation: pulsePulse 2s infinite;
  opacity: 0.8;
  pointer-events: none;
}

.whatsapp-widget:hover .whatsapp-icon-btn {
  background-color: var(--color-whatsapp-hover);
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  background-color: #fff;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-normal);
  pointer-events: none;
  white-space: nowrap;
  border: 1px solid rgba(15, 37, 71, 0.05);
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes rotateCW {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateCCW {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes pulsePulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }
  .pillars-grid {
    gap: 1.5rem;
  }
  .footer-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 2.25rem;
  }
  
  .hero {
    min-height: auto;
    padding-bottom: 4rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-stats {
    width: 100%;
    max-width: 500px;
  }
  
  .hero-image-wrapper {
    display: none;
  }
  
  .hero-graphic {
    max-width: 320px;
    height: 320px;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pillar-card {
    padding: 2.5rem 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Mobile Navigation toggle */
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-dark);
    flex-direction: column;
    padding: 3rem 1rem;
    gap: 2rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
    height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links a {
    color: var(--text-light);
    font-size: 1.25rem;
  }
  
  .nav-links .cta-btn-nav {
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: var(--color-primary);
  }
  
  .mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 2rem;
  }

  .hero-container {
    gap: 1.25rem;
  }

  .hero-graphic {
    max-width: 250px;
    height: 250px;
  }
  
  .hero-stats {
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    margin-bottom: 1.75rem;
  }
  
  .stat-item h3 {
    font-size: 1.6rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .b2b-contact-form {
    padding: 1.75rem;
  }
  
  .form-header-bar {
    padding: 2.25rem 1.5rem;
  }
  
  .cta-banner {
    padding: 3rem 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-icon-btn {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-tooltip {
    display: none; /* Hide tooltips on mobile viewports */
  }
}

/* ==========================================================================
   Taller de Pintura - Nuevas Clases
   ========================================================================== */

.paint-hero {
  background: radial-gradient(circle at 10% 20%, #0d284f 0%, #07162c 100%);
  color: var(--text-light);
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.paint-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 26, 117, 0.06) 0%, rgba(7, 22, 44, 0) 60%);
  pointer-events: none;
}

.comparison-section {
  background-color: var(--bg-secondary);
  padding: 5rem 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.comparison-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-primary);
  border: 1px solid rgba(15, 37, 71, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.comparison-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.comparison-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.comparison-card:hover .comparison-img-wrapper img {
  transform: scale(1.03);
}

.comparison-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-before {
  background-color: #ef4444;
  color: white;
}

.badge-after {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.comparison-info {
  padding: 1.75rem;
}

.comparison-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.comparison-info p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
}

/* Insurers Panel */
.insurers-section {
  padding: 5rem 0;
  background-color: var(--bg-primary);
  text-align: center;
}

.insurers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.insurer-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(15, 37, 71, 0.05);
  border-radius: var(--border-radius-sm);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.insurer-card:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.insurer-logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-secondary);
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}

.insurer-card:hover .insurer-logo-text {
  color: var(--text-light);
}

.insurer-card:hover .insurer-logo-text span {
  color: var(--color-accent);
}

/* Specific styling for insurer accents */
.insurer-logo-text.mapfre { color: #d91d1d; }
.insurer-logo-text.allianz { color: #003789; }
.insurer-logo-text.mutua { color: #005691; }
.insurer-logo-text.axa { color: #00008f; }
.insurer-logo-text.zurich { color: #2167ae; }
.insurer-logo-text.reale { color: #002d62; }

.insurer-card:hover .insurer-logo-text.mapfre,
.insurer-card:hover .insurer-logo-text.allianz,
.insurer-card:hover .insurer-logo-text.mutua,
.insurer-card:hover .insurer-logo-text.axa,
.insurer-card:hover .insurer-logo-text.zurich,
.insurer-card:hover .insurer-logo-text.reale {
  color: var(--text-light);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 26, 117, 0.1);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  font-family: var(--font-headings);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 3rem auto 0;
  }
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 3rem auto 0;
  }
}

/* Infrastructure and Facilities Section */
.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.infra-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 37, 71, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.infra-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.infra-img-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.infra-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.infra-card:hover .infra-img-wrapper img {
  transform: scale(1.05);
}

.infra-info {
  padding: 2.25rem 2rem;
}

.infra-info h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 700;
}

.infra-info p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .infra-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 1.5rem auto 0;
    gap: 1.75rem;
  }
  .infra-img-wrapper {
    height: 220px;
  }
  .infra-info {
    padding: 1.5rem 1.25rem;
  }
  .infra-info h3 {
    font-size: 1.25rem;
  }
}
