/* Estilos personalizados profesionales para el portafolio */

/* Logo y marca */
.logo .sitename {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  font-size: 1.5rem;
}

/* Mejoras en el hero section */
.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1752f2, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Servicios profesionales */
.service-item {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(23, 82, 242, 0.1);
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(23, 82, 242, 0.25);
  border-color: var(--accent-color);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.service-badge.premium {
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #000;
}

.service-item .image-wrapper {
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.service-item .image-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .image-wrapper img {
  transform: scale(1.05);
}

.service-item h3 {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.price-tag {
  background: linear-gradient(45deg, var(--accent-color), #0056b3);
  color: white;
  padding: 10px 15px;
  border-radius: 25px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.price-tag .currency {
  font-size: 0.9rem;
  opacity: 0.9;
}

.price-tag .amount {
  font-size: 1.3rem;
  font-weight: 700;
}

.price-tag .period {
  font-size: 0.9rem;
  opacity: 0.9;
}

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

.service-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: var(--default-color);
  font-size: 0.95rem;
}

.service-features li i {
  color: #28a745;
  margin-right: 10px;
  font-size: 1.1rem;
}

.service-description {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-primary.service-btn {
  background: #25d366;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 160px;
}

.btn-primary.service-btn:hover {
  background: #1fb854;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
}

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

/* Sección de garantías */
.guarantees-section {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-top: 2rem;
}

.guarantee-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.guarantees-section h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.guarantees-section p {
  color: var(--default-color);
  font-size: 0.9rem;
}

/* Portfolio/Proyectos */
.project-card {
  background: var(--surface-color);
  border: 2px solid rgba(23, 82, 242, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(23, 82, 242, 0.25);
  border-color: var(--accent-color);
}

.project-card .card-img-container {
  position: relative;
  overflow: hidden;
}

.project-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .card-img-top {
  transform: scale(1.05);
}

.status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #28a745;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.project-card .card-body {
  padding: 1.5rem;
}

.project-card .card-title {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.project-card .card-text {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-info {
  margin-bottom: 1.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.info-label {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.info-value {
  color: var(--default-color);
  font-size: 0.9rem;
}

.tech-section {
  margin-bottom: 1.5rem;
}

.tech-title {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.tech-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tech-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 82, 242, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tech-icon:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.tech-icon i {
  font-size: 1.2rem;
}

.project-links {
  display: flex;
  gap: 10px;
}

.btn-outline-primary.project-btn {
  flex: 1;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-success.project-btn {
  background: #28a745;
  border: none;
  flex: 1;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-success.project-btn:hover {
  background: #1e7e34;
  transform: translateY(-2px);
}

/* Page title mejorado */
.page-title {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(52, 52, 52, 0.9));
  padding: 5rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/img/hero-bg.jpg') center/cover;
  opacity: 0.1;
  z-index: -1;
}

.page-title h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-title p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0;
}

/* About Section Mejorado */
.profile-image-container {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.profile-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: translateY(-10px);
}

.profile-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(23, 82, 242, 0.3);
}

.professional-title {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.expertise-section h4,
.personal-info h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.expertise-section h4::after,
.personal-info h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

.expertise-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: var(--default-color);
}

.expertise-list li i {
  color: #28a745;
  margin-right: 12px;
  font-size: 1.1rem;
}

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

.info-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: var(--default-color);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li i {
  color: var(--accent-color);
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.info-list a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-list a:hover {
  color: var(--heading-color);
}

.status-available {
  background: #28a745;
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stats-section {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.stat-label {
  color: var(--default-color);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.cta-section {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(23, 82, 242, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* Contact Section Mejorado */
.contact-info-wrapper {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(23, 82, 242, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(23, 82, 242, 0.1);
  transform: translateY(-5px);
}

.contact-icon {
  background: var(--accent-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.contact-content h4 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-content p {
  color: var(--default-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--heading-color);
}

.contact-text {
  color: var(--default-color);
  font-weight: 500;
}

.social-contact h4 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
}

.social-link.github {
  background: #333;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.facebook {
  background: #1877f2;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: white;
}

/* Quick Actions Section */
.quick-actions {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
}

.quick-action-btn {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.quick-action-btn.whatsapp {
  background: #25d366;
  color: white;
}

.quick-action-btn.email {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.quick-action-btn.portfolio {
  background: var(--accent-color);
  color: white;
}

.quick-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  color: white;
}

.quick-action-btn.email:hover {
  background: var(--accent-color);
  color: white;
}

.availability-badge {
  background: #28a745;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.response-time {
  color: var(--default-color);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-style: italic;
}

/* Index Page Sections */
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 0;
}

/* Services Preview */
.services-preview {
  padding: 5rem 0;
}

.service-preview-item {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-preview-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(23, 82, 242, 0.2);
}

.service-icon {
  background: var(--accent-color);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.service-preview-item h3 {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-preview-item p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.price {
  background: linear-gradient(45deg, var(--accent-color), #0056b3);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Portfolio Preview */
.portfolio-preview {
  padding: 5rem 0;
}

.portfolio-preview-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
}

.portfolio-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 2rem;
  transform: translateY(60%);
  transition: transform 0.3s ease;
}

.portfolio-preview-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-preview-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.tech-stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-badge {
  background: var(--accent-color);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Why Choose Me */
.why-choose {
  padding: 5rem 0;
}

.feature-item {
  padding: 2rem 1rem;
}

.feature-icon {
  background: linear-gradient(45deg, var(--accent-color), #0056b3);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

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

.feature-item h3 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--default-color);
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(52, 52, 52, 0.9));
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-success {
  background: #25d366;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background: #1fb854;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  padding: 13px 28px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: var(--contrast-color);
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Footer profesional */
.footer {
  padding: 3rem 0 1rem 0;
}

.footer .icon {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer .social-links a {
  background: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

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

/* Botón de scroll profesional */
.scroll-top {
  background: var(--accent-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background: var(--heading-color);
  transform: scale(1.1);
}

/* Mejoras responsivas */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .service-item {
    margin-bottom: 2rem;
  }
}

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

.service-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Mejoras en la navegación */
.navmenu ul li a {
  font-weight: 500;
  transition: all 0.3s ease;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: var(--nav-hover-color);
  position: relative;
}

.navmenu ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

/* Quick Actions for Contact Page */
.quick-actions {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
}

.quick-actions h3 {
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.availability-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.availability-badge i {
  font-size: 18px;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 25px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.quick-action-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.quick-action-btn.whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.quick-action-btn.email {
  background: linear-gradient(135deg, var(--accent-color), #a855f7);
  color: white;
}

.quick-action-btn.email:hover {
  background: #a855f7;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.quick-action-btn.portfolio {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.quick-action-btn.portfolio:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.response-time {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Contact Extra Info */
.contact-extra-info h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.info-item-small {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
}

.info-item-small i {
  color: var(--accent-color);
  font-size: 16px;
}

/* Map Container */
.map-container {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container h3 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 30px;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
  .contact-item {
    padding: 20px;
  }
  
  .quick-actions {
    padding: 25px;
    margin-top: 30px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .map-container {
    padding: 20px;
  }
}

/* ADVANCED CONTACT PAGE DESIGN */

/* Contact Hero Banner */
.contact-hero-banner {
  background: linear-gradient(135deg, rgba(23, 82, 242, 0.1), rgba(168, 85, 247, 0.1));
  padding: 100px 0 80px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(23, 82, 242, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.contact-hero-subtitle {
  font-size: 1.3rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
}

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

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.hero-badge.available {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.hero-badge.response {
  background: linear-gradient(135deg, var(--accent-color), #a855f7);
  color: white;
}

.hero-badge.remote {
  background: rgba(255, 255, 255, 0.1);
  color: var(--default-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Hero Visual */
.contact-hero-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #a855f7);
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-element i {
  font-size: 24px;
  color: var(--accent-color);
}

.floating-element.elem-1 {
  top: 20%;
  left: 20%;
  animation: float 6s ease-in-out infinite;
}

.floating-element.elem-2 {
  top: 30%;
  right: 15%;
  animation: float 6s ease-in-out infinite 2s;
}

.floating-element.elem-3 {
  bottom: 25%;
  left: 30%;
  animation: float 6s ease-in-out infinite 4s;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

/* Contact Methods Grid */
.contact-methods-grid {
  margin-bottom: 100px;
}

.contact-method-card {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #a855f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(168, 85, 247, 0.3);
}

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

.method-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.method-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.method-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.method-icon.email {
  background: linear-gradient(135deg, var(--accent-color), #a855f7);
}

.method-icon.video {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.method-icon i {
  font-size: 32px;
  color: white;
}

.method-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-badge.instant {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.method-badge.professional {
  background: rgba(168, 85, 247, 0.2);
  color: var(--accent-color);
}

.method-badge.premium {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.contact-method-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-method-card p {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 25px;
}

.method-details {
  margin-bottom: 30px;
}

.phone-number,
.email-address,
.schedule {
  display: block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.method-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.method-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--default-color);
  font-size: 0.9rem;
}

.method-features i {
  color: #10b981;
  font-size: 14px;
}

.method-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 25px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.method-cta-btn:hover::before {
  left: 100%;
}

.method-cta-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.method-cta-btn.email {
  background: linear-gradient(135deg, var(--accent-color), #a855f7);
  color: white;
}

.method-cta-btn.video {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.method-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Business Information Section */
.business-info-section {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 80px 60px;
  margin-bottom: 80px;
  position: relative;
}

.business-info-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.business-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 3rem;
}

.business-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.business-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--accent-color), #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  font-size: 24px;
  color: white;
}

.detail-content h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.detail-content p {
  color: var(--default-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.detail-note {
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
  font-style: italic;
}

/* Business Stats Grid */
.business-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-icon.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.stat-icon.clients {
  background: linear-gradient(135deg, var(--accent-color), #a855f7);
}

.stat-icon.experience {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-icon.rating {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-icon i {
  font-size: 24px;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--default-color);
  font-weight: 500;
  opacity: 0.8;
}

/* Social Media Section */
.social-media-section {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
}

.social-description {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-links-advanced {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link-advanced {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link-advanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.5s ease;
}

.social-link-advanced:hover::before {
  left: 100%;
}

.social-link-advanced:hover {
  transform: translateX(10px);
  border-color: rgba(168, 85, 247, 0.3);
}

.social-link-advanced.github:hover {
  background: rgba(51, 51, 51, 0.1);
}

.social-link-advanced.linkedin:hover {
  background: rgba(0, 119, 181, 0.1);
}

.social-link-advanced.facebook:hover {
  background: rgba(24, 119, 242, 0.1);
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), #a855f7);
}

.social-icon i {
  font-size: 20px;
  color: white;
}

.social-content {
  flex: 1;
}

.social-content h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.social-content p {
  color: var(--default-color);
  opacity: 0.7;
  margin: 0;
  font-size: 0.9rem;
}

.social-arrow {
  color: var(--accent-color);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.social-link-advanced:hover .social-arrow {
  transform: translate(5px, -5px);
}

/* Location Info Section */
.location-info-section {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.location-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--accent-color), #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon i {
  font-size: 24px;
  color: white;
}

.location-content {
  flex: 1;
}

.location-content h4 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.location-content p {
  color: var(--default-color);
  margin-bottom: 5px;
  font-size: 1rem;
}

.location-note {
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
  font-style: italic;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-option.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-option.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateX(5px);
}

.contact-option.email {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.contact-option.email:hover {
  background: rgba(168, 85, 247, 0.2);
  transform: translateX(5px);
}

.contact-option i {
  font-size: 18px;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, var(--accent-color), #a855f7);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-section h3 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

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

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

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: white;
}

.cta-btn i {
  font-size: 20px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .social-media-section,
  .location-info-section {
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .location-item {
    gap: 15px;
  }
  
  .location-icon {
    width: 50px;
    height: 50px;
  }
  
  .location-icon i {
    font-size: 20px;
  }
  
  .contact-options {
    gap: 8px;
  }
  
  .contact-option {
    padding: 10px 15px;
  }
  
  .final-cta-section {
    padding: 40px 30px;
    margin-top: 50px;
  }
  
  .final-cta-section h3 {
    font-size: 2rem;
  }
  
  .final-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Responsive Design for Advanced Contact */
@media (max-width: 1200px) {
  .business-info-section {
    padding: 60px 40px;
  }
  
  .contact-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .contact-hero-banner {
    padding: 60px 0 40px;
    margin-bottom: 40px;
  }
  
  .contact-hero-title {
    font-size: 2.2rem;
  }
  
  .contact-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .contact-method-card {
    padding: 30px 25px;
  }
  
  .business-info-section {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
  
  .business-info-content h3 {
    font-size: 2rem;
  }
  
  .business-description {
    font-size: 1.1rem;
  }
  
  .business-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .social-media-section,
  .map-section-advanced {
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .contact-hero-visual {
    height: 200px;
  }
  
  .contact-hero-circle {
    width: 150px;
    height: 150px;
  }
  
  .floating-element {
    width: 45px;
    height: 45px;
  }
  
  .floating-element i {
    font-size: 18px;
  }
}
