/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #FF6B35;
  --primary-dark: #E55A2B;
  --secondary-color: #FF8C42;
  --dark-bg: #0F0F0F;
  --dark-secondary: #1a1a1a;
  --text-light: #f8f9fa;
  --text-dark: #333;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --font-family: 'Inter', sans-serif;
  --dark-color: #0F0F0F;
  --light-color: #FFFFFF;
  --gray-color: #F8F9FA;
  --text-color: #2C2C2C;
  --shadow-light: 0 4px 20px rgba(255, 107, 53, 0.15);
  --shadow-dark: 0 8px 40px rgba(15, 15, 15, 0.2);
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  --gradient-dark: linear-gradient(135deg, #0F0F0F 0%, #2C2C2C 100%);
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--light-color);
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}

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

.logo-text-nav .squad {
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
  color: var(--text-light);
  display: flex;
  align-items: center;
  padding: 80px 0 0;
  position: relative;
}

.hero .col-lg-7, .hero .col-lg-5 {
  z-index: 2;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
  animation: particles 20s ease-in-out infinite;
}

@keyframes particles {
  0%, 100% { opacity: 0.3; transform: translateY(0px); }
  50% { opacity: 0.6; transform: translateY(-20px); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-services {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.price-highlight {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5em;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.price-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 5px rgba(255, 107, 53, 0.5); }
  to { box-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
}

.convertem-highlight {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

.convertem-highlight::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.convertem-highlight:hover::before {
  transform: scaleX(1.1);
}

.simulation-highlight {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.simulation-highlight h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.simulation-highlight p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.hero-ctas {
  margin-top: 2rem;
}

.btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: white;
}

.btn-outline-light {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
}

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

/* ===== HERO FORM ===== */
.hero-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-form-title {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero-form-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-form .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-form .form-group {
  flex: 1;
}

.hero-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
}

.hero-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.hero-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  background: white;
}

.hero-form .form-control::placeholder {
  color: var(--text-muted);
}

.hero-form .form-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

.hero-form .btn {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll a {
  color: var(--text-light);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ===== METRICS SECTION ===== */
.metrics-section {
  background: var(--text-light);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.metric-card {
  text-align: center;
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

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

.metric-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
}

.metric-number::after {
  content: '+';
  position: absolute;
  top: 0;
  right: -20px;
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.7;
}

.metric-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 5rem 0;
  background: white;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  margin: 1rem 0 2rem 0;
  border-radius: 2px;
}

.about-content .lead {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
}

.mv-item {
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
  background: #f8f9fa;
}

.mv-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mv-item h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.about-visual {
  padding: 2rem;
}

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

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.stat-item h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.service-card {
  background: var(--light-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.service-icon i {
  font-size: 2rem;
  color: var(--light-color);
}

.service-card:hover .service-icon {
  transform: rotate(5deg) scale(1.1);
}

.service-card h4 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.service-features li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-color);
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== CASES SECTION ===== */
.cases-section {
  padding: 6rem 0;
  background: var(--gray-color);
}

.case-filters {
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-color);
  padding: 10px 20px;
  margin: 0 0.5rem 0.5rem 0;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
}

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

.case-card {
  background: var(--light-color);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-light);
  height: 100%;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.case-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.case-card:hover .case-overlay {
  opacity: 1;
}

.case-content {
  padding: 2rem;
}

.case-category {
  color: #CC5529;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

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

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

.result-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #CC5529;
}

.result-label {
  font-size: 0.9rem;
  color: #444;
  font-weight: 600;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  margin: 0 auto 3rem auto;
  max-width: 1200px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: var(--transition-fast);
  border-radius: 10px;
  width: 100%;
  max-width: 180px;
}

.client-logo:hover {
  transform: translateY(-5px);
  background: var(--gray-color);
}

.client-logo img {
  max-height: 60px;
  max-width: 120px;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition-fast);
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

.certification-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  transition: var(--transition-fast);
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}

.partnerships {
  text-align: center;
}

.partnerships .row {
  justify-content: center;
}

.certification-badge:hover {
  background: var(--gray-color);
  transform: translateY(-3px);
}

.certification-badge i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.certification-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--gray-color);
}

.testimonial-card {
  background: var(--light-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-light);
  height: 100%;
}

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

.stars {
  color: #FFD700;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 2rem;
}

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

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.author-info span {
  color: #666;
  font-size: 0.95rem;
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.team-card {
  background: var(--light-color);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-light);
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.team-photo {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.team-card:hover .team-overlay {
  opacity: 0.9;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.social-links a {
  color: var(--light-color);
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: var(--transition-fast);
}

.social-links a:hover {
  transform: scale(1.2);
}

.team-info {
  padding: 2rem;
}

.team-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: #444;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-experience {
  font-size: 0.95rem;
}

.experience-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #666;
}

.experience-item i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  width: 16px;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 6rem 0;
  background: var(--gray-color);
}

.blog-card {
  background: var(--light-color);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-light);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.blog-category {
  display: inline-block;
  background: #CC5529;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.blog-content {
  padding: 2rem;
}

.blog-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-content h4 a {
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-content h4 a:hover {
  color: var(--primary-color);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--light-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 2;
}

.step-icon {
  width: 100px;
  height: 100px;
  background: var(--light-color);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: var(--transition-fast);
  position: relative;
}

.process-step:hover .step-icon {
  background: var(--primary-color);
  color: var(--light-color);
  transform: scale(1.05);
}

.process-step h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 6rem 0;
  background: var(--gray-color);
}

.contact-form-wrapper {
  background: var(--light-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  background: var(--light-color);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  transition: var(--transition-fast);
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  outline: none;
}

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

.form-note {
  font-size: 0.9rem;
  color: var(--text-color);
  text-align: center;
}

.contact-info {
  margin-top: 4rem;
}

.contact-item {
  text-align: center;
  padding: 2rem 1rem;
}

.contact-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.contact-item h5 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-item a:hover {
  color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 0 2rem 0;
}

.logo-text-footer {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.logo-text-footer .result {
  color: var(--light-color);
}

.logo-text-footer .squad {
  color: var(--primary-color);
  margin-left: 3px;
}

.footer h5 {
  color: var(--light-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #E0E0E0;
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-contact p {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: #25D366;
  border-radius: 50px;
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 60px;
  overflow: hidden;
  animation: whatsapp-pulse 3s infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #25D366, #128C7E, #25D366);
  border-radius: 50px;
  z-index: -1;
  animation: notification-pulse 2s infinite;
}

.whatsapp-float:hover::before {
  animation-play-state: paused;
}

.whatsapp-float.expanded {
  max-width: 250px;
  padding: 15px 25px;
  border-radius: 50px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .whatsapp-content {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.whatsapp-float .fab-whatsapp {
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.whatsapp-float .whatsapp-text {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.whatsapp-float.expanded .whatsapp-content {
  gap: 12px;
}

.whatsapp-float.expanded .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  text-decoration: none;
  color: white;
}

.whatsapp-float.expanded:hover {
  transform: translateY(-3px) scale(1.02);
}

.whatsapp-float:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@keyframes text-glow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  }
}

@keyframes notification-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid white;
  animation: notification-pulse 2s infinite;
}

.whatsapp-float.expanded::after {
  display: none;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 100px 0 20px;
    text-align: center;
  }

  .hero .col-lg-7, .hero .col-lg-5 {
    margin-bottom: 2rem;
  }

  .hero-form-container {
    margin-top: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-top: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    margin-top: 1rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-services {
    font-size: 1rem;
  }

  .price-highlight {
    font-size: 1.2em;
    display: inline-block;
  }

  .convertem-highlight {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-form-container {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .simulation-highlight {
    padding: 1.5rem;
  }

  .simulation-highlight h3 {
    font-size: 1.2rem;
  }

  .simulation-highlight p {
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .whatsapp-float.expanded {
    max-width: 200px;
  }

  .whatsapp-float .whatsapp-text {
    font-size: 0.8rem;
  }

  .whatsapp-float.expanded .whatsapp-text {
    font-size: 0.8rem;
  }

  .whatsapp-float::after {
    width: 10px;
    height: 10px;
    top: -3px;
    right: -3px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 20px;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-services {
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  .price-highlight {
    font-size: 1.1em;
    white-space: normal;
  }

  .convertem-highlight {
    font-size: 0.95rem;
  }

  .hero-ctas {
    margin-top: 1.5rem;
  }

  .hero-ctas .btn {
    display: block;
    margin: 0.5rem 0;
  }

  .simulation-highlight {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .simulation-highlight h3 {
    font-size: 1.1rem;
  }

  .simulation-highlight p {
    font-size: 0.85rem;
  }

  .hero-form-container {
    padding: 1rem;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 12px 15px;
  }

  .whatsapp-float.expanded {
    max-width: 180px;
  }

  .whatsapp-float .whatsapp-text {
    font-size: 0.75rem;
  }

  .whatsapp-float.expanded .whatsapp-text {
    font-size: 0.75rem;
  }

  .whatsapp-float::after {
    width: 8px;
    height: 8px;
    top: -2px;
    right: -2px;
  }
}
