/* 
 * Custom CSS for Alpha Futevolei - Mobile First Design
 * Inspired by eliteftv.com.br
 * Colors: Black, White, Orange
 */

:root {
  --primary-color: #FF6600; /* Laranja */
  --primary-hover: #FF8533;
  --dark-color: #111111;
  --light-color: #FFFFFF;
  --gray-color: #F4F4F4;
  --text-color: #333333;
}

/* Reset & Base */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* Botões atualizados: pretos com texto/ícones em laranja e borda laranja */
.btn-primary {
  background-color: var(--dark-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
}

.btn-outline-light {
  border-color: var(--light-color);
  color: var(--light-color);
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
  background-color: var(--light-color) !important;
  color: var(--dark-color) !important;
  border-color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark-color);
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-title p {
  font-size: 1.1rem;
  color: #777;
}

/* Mobile First Navigation */
.navbar {
  background-color: var(--dark-color);
  padding: 0.75rem 0;
}


.navbar-toggler {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 102, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: var(--light-color);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s;
}

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

.nav-link.active {
  color: var(--primary-color);
}

.navbar .btn-cta {
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  margin-left: 0.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: white;
  background-color: var(--dark-color);
  overflow: hidden;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}

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

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons .btn {
  padding: 0.75rem 2rem;
  margin: 0.5rem;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background-color: white;
}

.about-image {
  margin-bottom: 2rem;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
  position: absolute;
  right: 30px;
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
}

.about-content h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.about-list {
  margin: 1.5rem 0;
}

.about-list li {
  margin-bottom: 0.75rem;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-color: var(--gray-color);
}

.service-card {
  transition: transform 0.3s;
  border-radius: 10px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: -30px auto 1rem;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
}

.card-link:hover {
  color: var(--primary-hover);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../assets/images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-section .btn-lg {
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Tournaments Section */
.tournaments-section {
  padding: 4rem 0;
  background-color: white;
}

.tournament-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.tournament-card:hover {
  transform: translateY(-10px);
}

.card-img-top-wrapper {
  height: 200px;
  overflow: hidden;
}

.card-img-top {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tournament-card:hover .card-img-top {
  transform: scale(1.1);
}

.tournament-meta {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Products Section */
.featured-products-section {
  padding: 4rem 0;
  background-color: var(--gray-color);
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-thumbnail img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.product-title a {
  color: var(--dark-color);
  text-decoration: none;
}

.product-title a:hover {
  color: var(--primary-color);
}

.product-price {
  font-weight: 600;
  color: var(--primary-color);
}

.product-price del {
  color: #999;
  font-weight: 400;
  margin-right: 0.5rem;
}

.product-price ins {
  text-decoration: none;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background-color: white;
}

.testimonial-item {
  padding: 1rem;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content p {
  font-style: italic;
}

.testimonial-indicators {
  position: relative;
  margin-top: 2rem;
}

.testimonial-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
}

.testimonial-indicators button.active {
  background-color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: var(--gray-color);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-text h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-form-wrapper {
  border-radius: 10px;
}

.contact-form-wrapper h4 {
  margin-bottom: 1.5rem;
}

.form-control {
  height: calc(3rem + 2px);
  border-radius: 5px;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  margin-bottom: 1.5rem;
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

/* Footer */
.site-footer {
  background-color: black;
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 0;
}

.footer-widget h5 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-widget h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-widget ul {
  padding: 0;
  list-style: none;
}

.footer-widget ul li {
  margin-bottom: 0.75rem;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-widget ul li a i {
  margin-right: 8px;
  color: var(--primary-color);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  margin-right: 10px;
  transition: all 0.3s;
}

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

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}

/* Scroll Back to Top */
.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (min-width: 576px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    padding: 0;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .about-image {
    margin-bottom: 0;
  }
  
  .cta-section {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .navbar .btn-cta {
    margin-left: 1rem;
  }
}

@media (min-width: 1200px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
}

/* Seção Sedes */
.sedes-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.sede-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.sede-card:hover {
  transform: translateY(-10px);
}

.sede-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

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

.sede-card:hover .sede-img img {
  transform: scale(1.1);
}

.sede-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  padding: 20px;
}

.sede-title {
  color: white;
  font-weight: 700;
  margin-bottom: 5px;
}

.sede-address {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.sede-info {
  padding: 20px;
  background-color: white;
}

.sede-detail {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.sede-detail i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* WooCommerce Products Section */
.products-section {
  padding: 4rem 0;
  background-color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 30px;
}

.woo-product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  background-color: white;
}

.woo-product-card:hover {
  transform: translateY(-10px);
}

.woo-product-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

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

.woo-product-card:hover .woo-product-img img {
  transform: scale(1.1);
}

.woo-product-info {
  padding: 20px;
  text-align: center;
}

.woo-product-title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.woo-product-title a {
  color: var(--dark-color);
  text-decoration: none;
}

.woo-product-title a:hover {
  color: var(--primary-color);
}

.woo-product-price {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.woo-product-price del {
  color: #999;
  font-weight: 400;
  margin-right: 5px;
  display: block;
  text-align: center;
}

.woo-product-actions {
  display: flex;
  justify-content: center;
}

/* Estilo para badges de produtos (oferta, esgotado, etc.) */
.woo-product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 3px;
  z-index: 1;
  text-transform: uppercase;
  display: inline-block;
  width: auto;
  min-width: fit-content;
  text-align: center;
}

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

.badge-featured {
  background-color: #007bff;
}

.badge-out-of-stock {
  background-color: #dc3545;
}

.badge-new {
  background-color: #28a745;
}

/* CSS Personalizado para Página Inicial do Alpha Futevôlei */

/* Seção de Features */
#features {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.feature {
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 102, 0, 0.1) 100%);
  z-index: -1;
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 10px;
}

.feature:hover {
  transform: translateY(-10px);
  border-color: #ff6600;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature:hover:before {
  transform: scale(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 102, 0, 0.1);
  transition: all 0.3s ease;
}

.feature:hover .feature-icon {
  background-color: #ff6600;
  transform: scale(1.1) rotate(5deg);
}

.feature:hover .feature-icon i {
  color: white !important;
}

.feature h3 {
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.feature:hover h3 {
  color: #ff6600;
}

.feature p {
  transition: all 0.3s ease;
  color: #6c757d;
}

.feature:hover p {
  color: #333;
}

/* Animação pulsante para os ícones */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.feature:hover .feature-icon i {
  animation: pulse 1.5s infinite;
}

/* Outros estilos para a página inicial */

/* Coaches Section - Seção de Professores */
.coaches-section {
  background-color: #000;
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.coaches-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 102, 0, 0.15) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.coaches-section .container {
  position: relative;
  z-index: 2;
}

.coaches-section .section-title h2::after {
  background-color: var(--primary-color);
}

.coach-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.coach-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  transition: all 0.8s ease;
}

.carousel-item:hover .coach-img {
  transform: scale(1.05);
}

.coach-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  background: rgba(255, 102, 0, 0.9);
  display: flex;
  justify-content: center;
  padding: 15px 0;
  transition: all 0.4s ease;
  opacity: 0;
}

.coach-image:hover .coach-social {
  bottom: 0;
  opacity: 1;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-5px);
}

.coach-name {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  color: white;
}

.coach-name:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.carousel-item:hover .coach-name:after {
  width: 100%;
}

.coach-position {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.coach-experience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exp-badge {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.carousel-item:hover .exp-badge {
  background-color: rgba(255, 102, 0, 0.2);
}

.coach-bio {
  margin: 20px 0;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Indicators personalizados */
.coach-indicators {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.coach-indicators button {
  background: none;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.coach-indicators button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.coach-indicators button.active {
  color: white;
}

.coach-indicators button.active::after {
  width: 40px;
}

.coach-indicators button:hover {
  color: white;
}

.coaches-carousel-container .carousel-control-prev,
.coaches-carousel-container .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.7;
  top: 50%;
  transform: translateY(-50%);
}

.coaches-carousel-container .carousel-control-prev {
  left: -25px;
}

.coaches-carousel-container .carousel-control-next {
  right: -25px;
}

.coaches-carousel-container .carousel-control-prev:hover,
.coaches-carousel-container .carousel-control-next:hover {
  opacity: 1;
}

/* Animação de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-item.active .coach-info {
  animation: fadeInUp 0.8s forwards;
}

/* Responsividade */
@media (max-width: 991px) {
  .coach-img {
    height: 350px;
  }
  
  .coach-name {
    font-size: 1.8rem;
  }
  
  .coaches-carousel-container .carousel-control-prev,
  .coaches-carousel-container .carousel-control-next {
    display: none;
  }
}

@media (max-width: 767px) {
  .coaches-section {
    padding: 60px 0;
  }
  
  .coach-img {
    height: 300px;
  }
  
  .coach-indicators {
    margin-top: 25px;
  }
  
  .coach-indicators button {
    padding: 8px 12px;
    font-size: 1rem;
  }
}

/* Seção de Serviços com animações */
.services-section {
  background-color: #f8f9fa;
}

.service-item {
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 102, 0, 0.1) 100%);
  z-index: -1;
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 10px;
}

.service-item:hover {
  transform: translateY(-10px);
  border-color: #ff6600;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-item:hover:before {
  transform: scale(1);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 102, 0, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  background-color: #ff6600;
  transform: scale(1.1) rotate(5deg);
}

.service-item:hover .service-icon i {
  color: white !important;
}

.service-item h3 {
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.service-item:hover h3 {
  color: #ff6600;
}

.service-desc {
  transition: all 0.3s ease;
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 0.95rem;
  height: 80px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-item:hover .service-desc {
  color: #333;
}

.service-link {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}

.service-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff6600;
  transition: width 0.3s ease;
}

.service-link:hover:before {
  width: 100%;
}

.service-link span {
  margin-right: 5px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

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

.service-item:hover .service-icon i {
  animation: pulse 1.5s infinite;
}