/* Services Section Styles */
.services-section {
  min-height: 100vh;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #1f2937;
}

.services-title .highlight {
  color: #2563eb;
}

.services-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #3b82f6;
}

.service-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
}

.service-short-desc {
  color: #bfdbfe;
  font-weight: 500;
  font-size: 0.875rem;
  position: absolute;
  bottom: 0.25rem;
  left: 1.5rem;
  right: 1.5rem;
}

.service-long-desc {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.learn-more-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.learn-more-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Enhanced About Section Styles */
.about-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Enhanced Hero Section */
.about-hero {
  margin-bottom: 4rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.about-hero:hover {
  transform: translateY(-5px);
}

.about-hero-image {
  position: relative;
  height: 28rem;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 1s ease, filter 0.3s ease;
}

.about-hero:hover .about-hero-image img {
  transform: scale(1.05);
  filter: brightness(1);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.4) 0%,
    rgba(79, 70, 229, 0.3) 50%,
    rgba(99, 102, 241, 0.2) 100%
  );
  backdrop-filter: blur(2px);
}

.about-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.about-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #fff 0%, #bfdbfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  max-width: 600px;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Main Content Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}

.about-content {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.about-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Enhanced Services Overview */
.services-overview {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #bfdbfe;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.services-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #4f46e5, #2563eb);
}

.services-overview h4 {
  color: #1e40af;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.services-overview h4::before {
  content: "⚡";
  font-size: 1.25rem;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .services-list {
    grid-template-columns: 1fr 1fr;
  }
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e40af;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: #93c5fd;
  transform: translateX(5px);
}

.service-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

/* Enhanced Feature Cards */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #4f46e5, #2563eb);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.9);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.feature-content {
  padding: 1.75rem;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.feature-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Enhanced Quality Showcase */
.quality-showcase {
  margin: 5rem 0;
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .quality-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.quality-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 24rem;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.2);
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.quality-image:hover img {
  transform: scale(1.05);
}

.quality-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(79, 70, 229, 0.05) 100%
  );
}

.quality-content h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quality-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.quality-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .quality-features {
    grid-template-columns: 1fr 1fr;
  }
}

.quality-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.quality-feature:hover {
  background: white;
  border-color: #cbd5e1;
  transform: translateX(5px);
}

.quality-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

/* Enhanced Testimonial Section */
.testimonial-section {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  color: white;
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  margin: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.3);
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="0,100 1000,0 1000,100"/></svg>');
  background-size: cover;
}

.testimonial-content {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.quote-icon {
  width: 4rem;
  height: 4rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 2rem;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.author-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.author-position {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* Enhanced Stats Section */
.stats-section {
  margin: 5rem 0 2rem;
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-header h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-header p {
  color: #64748b;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.stat-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.9);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

/* Animation enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.feature-card,
.stat-card,
.service-item,
.quality-feature {
  animation: fadeInUp 0.8s ease-out;
}

/* Footer Styles */
.footer-section {
  background: #111827;
  color: white;
  padding: 4rem 1rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.brand-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.brand-section p {
  color: #d1d5db;
  line-height: 1.6;
  max-width: 400px;
}

.office-section h4,
.links-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #d1d5db;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: white;
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: white;
}

.link-indicator {
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.footer-link:hover .link-indicator {
  width: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: white;
}

/* WhatsApp Float Styles */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 1.25rem;
  z-index: 1000;
}

.whatsapp-btn {
  background: #22c55e;
  color: white;
  border: none;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  position: relative;
}

.whatsapp-btn:hover {
  background: #16a34a;
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  background: #1f2937;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 0.5rem solid transparent;
  border-left-color: #1f2937;
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s ease;
}

.scale-in.active {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s ease;
}

.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.7s ease;
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}
