:root {
  --primary: #667eea;
  --primary-dark: #5568d3;
  --secondary: #764ba2;
  --accent: #f5576c;
  --success: #4ade80;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--white);
  width: 100%;
  position: relative;
}

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

.navbar {
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  min-height: 85px;
}

.navbar .container {
  padding: 0 20px;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.8rem 0;
}

.brand-logo {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  flex-shrink: 0;
}

.brand-icon {
  font-size: 1.6rem;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
}

.nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

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

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-1);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::before {
  width: 60%;
}

.btn-primary-custom {
  background: var(--gradient-1);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
  color: var(--white);
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
  width: 100%;
}

.hero-section .container {
  max-width: 100%;
  padding: 0 20px;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: #f093fb;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: #4facfe;
  bottom: -150px;
  right: -150px;
  animation-delay: 3s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: #43e97b;
  top: 50%;
  left: 50%;
  animation-delay: 6s;
}

.shape-4 {
  width: 350px;
  height: 350px;
  background: #fa709a;
  bottom: 10%;
  left: 10%;
  animation-delay: 9s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, 50px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 80px) scale(0.9);
  }
  75% {
    transform: translate(-60px, -40px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-left: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: slideInLeft 1s ease-out;
  position: relative;
  z-index: 10;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 15px;
  padding: 1.2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: floatCard 6s infinite ease-in-out;
  z-index: 2;
}

.floating-card i {
  font-size: 2rem;
  color: var(--white);
  background: var(--gradient-1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.card-info {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}

.card-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.card-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 0;
  animation-delay: 2s;
}

.card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-illustration {
  position: relative;
  animation: scaleIn 1s ease-out;
  max-width: 100%;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
}

.illustration-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

.brands-section {
  border-bottom: 1px solid #e9ecef;
  overflow: hidden;
}

.brands-marquee {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 15px;
}

.brand-item {
  font-size: 1rem;
  font-weight: 600;
  color: #6c757d;
  padding: 0.5rem 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.brand-item:hover {
  color: var(--primary);
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
}

.services-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.services-section .container,
.process-section .container,
.testimonials-section .container,
.quote-section .container {
  padding: 0 20px;
}

.service-card {
  position: relative;
  background: var(--white);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.service-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
}

.service-icon-wrapper {
  display: flex;
  justify-content: flex-start;
}

.service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 20px;
  color: var(--white);
  font-size: 2.5rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

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

.service-card-success .service-icon {
  background: var(--gradient-4);
  box-shadow: 0 8px 25px rgba(67, 233, 123, 0.3);
}

.service-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.service-description {
  color: #6c757d;
  line-height: 1.8;
  font-size: 1rem;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.feature-badge {
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-card-success .feature-badge {
  background: rgba(67, 233, 123, 0.1);
  color: #22c55e;
}

.feature-badge:hover {
  transform: translateX(5px);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  transform: translateX(10px);
  color: var(--primary-dark);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(102, 126, 234, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-2);
  color: var(--white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 20px rgba(245, 87, 108, 0.3);
  transition: all 0.3s ease;
}

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

.feature-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.feature-card-text {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
}

.process-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
}

.process-card {
  position: relative;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.process-icon {
  width: 80px;
  height: 80px;
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 1rem auto 1.5rem;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  background: var(--gradient-1);
  color: var(--white);
  transform: scale(1.1);
}

.process-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.process-text {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
}

.testimonials-section {
  background: var(--white);
  overflow: hidden;
}

.testimonial-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.2);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.author-title {
  font-size: 0.85rem;
  color: #6c757d;
}

.quote-section {
  position: relative;
  background: var(--gradient-1);
  overflow: hidden;
}

.quote-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.quote-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.quote-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: #f093fb;
  top: -200px;
  right: -200px;
}

.quote-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: #4facfe;
  bottom: -150px;
  left: -150px;
}

.quote-form-wrapper {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-floating .form-control,
.form-floating .form-select {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  transition: all 0.3s ease;
  height: calc(3.5rem + 2px);
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  line-height: 1.5;
}

.form-floating textarea.form-control {
  height: auto;
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15);
}

.btn-submit {
  background: var(--gradient-1);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.success-message {
  text-align: center;
  padding: 3rem 2rem;
}

.success-animation {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.success-icon {
  font-size: 5rem;
  color: #22c55e;
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-message h3 {
  font-weight: 700;
  color: var(--dark);
  font-size: 2rem;
}

.footer-section {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--white);
  overflow: hidden;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-1);
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand .brand-logo {
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.8rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--white);
}

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

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--gradient-1);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  }
}

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

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 75px;
}

.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-top-btn.show {
  display: flex;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

/* RESPONSIVE - MOBİL İYİLEŞTİRMELER */

@media (max-width: 991px) {
  .container {
    padding: 0 15px;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-item {
    margin-bottom: 0.5rem;
  }

  .btn-primary-custom {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .floating-card {
    padding: 1rem;
  }

  .hero-image-wrapper {
    margin-top: 3rem;
    padding: 1rem;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 90px;
  }

  .hero-section .row.min-vh-100 {
    min-height: auto !important;
  }

  .hero-section .container,
  .services-section .container,
  .process-section .container,
  .testimonials-section .container,
  .quote-section .container,
  .footer-section .container {
    padding: 0 15px;
  }

  .hero-content {
    padding-left: 0;
  }

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

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

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

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 0;
  }

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

  .hero-image-wrapper {
    display: none;
  }

  .service-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }

  .service-number {
    font-size: 3rem;
    top: 1.5rem;
    right: 1.5rem;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .quote-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .brands-marquee {
    gap: 1rem;
  }

  .brand-item {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }

  .whatsapp-float,
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
  }

  .scroll-top-btn {
    bottom: 90px;
  }

  .footer-section .container {
    padding: 0 15px;
  }

  .process-card {
    padding: 2rem 1.5rem;
    margin-top: 1rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

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

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

  .hero-stats {
    gap: 1.5rem;
    width: 100%;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .floating-card {
    display: none;
  }

  .hero-image-wrapper {
    padding: 1rem 0;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .service-number {
    font-size: 2.5rem;
    top: 1rem;
    right: 1rem;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .feature-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .process-card {
    padding: 1.5rem;
  }

  .process-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .quote-form-wrapper {
    padding: 1.5rem;
  }

  .form-floating .form-control,
  .form-floating .form-select {
    padding: 1rem 0.8rem;
    font-size: 0.9rem;
  }

  .form-floating > .form-select {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
  }

  .btn-submit {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
    bottom: 15px;
    right: 15px;
  }

  .scroll-top-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    bottom: 80px;
    right: 15px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  .footer-section {
    padding: 0;
  }

  .footer-section .container {
    padding: 0 15px;
  }
}

/* Ultra küçük ekranlar için (320px-400px) */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.5rem;
  }

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

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .quote-form-wrapper {
    padding: 1.5rem 1rem;
  }
}
}
