@import url("https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Lexend:wght@100..900&display=swap");

/* GSAP ScrollSmoother Structure */
#smooth-wrapper {
  overflow: hidden;
}

#smooth-content {
  overflow: visible;
}

* {
  font-family: "Didact Gothic", sans-serif;
}

h1 {
  font-size: 50px;
}

section:not(#hero-section) h1 {
  font-size: clamp(2.75rem, 3.5vw, 3.125rem);
  line-height: 1.2;
  transition: font-size 0.2s ease;
}

section .section-title,
section .reviews-section-title {
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  line-height: 1.25;
  transition: font-size 0.2s ease;
}

@media (max-width: 992px) {
  section:not(#hero-section) h1 {
    font-size: clamp(2.25rem, 4.5vw, 2.75rem);
  }

  section .section-title,
  section .reviews-section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }
}

@media (max-width: 768px) {
  section:not(#hero-section) h1 {
    font-size: clamp(2rem, 5.5vw, 2.5rem);
  }

  section .section-title,
  section .reviews-section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 576px) {
  section:not(#hero-section) h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
  }

  section .section-title,
  section .reviews-section-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }
}

#hero-section .display-2 {
  font-size: clamp(3rem, 7vw, 4.5rem);
}

.bg-purple {
  background-color: #2f39e6;
}

.partner_logo {
  opacity: 0.5;
}

/* Header Part */
.nav-link {
  color: white !important;
  font-weight: 600;
  opacity: 0.5;
  transition: 0.3s;
}





.n-active {
  opacity: 1;
}

.nav-link:hover {
  opacity: 1;
}

/* Buttons */
.btn {
  border-radius: 25px;
  padding: 12px 24px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: transparent;
  border: 1px solid white;
}

.btn-primary-rounded {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 10px;
  transition: 0.3s;
}

.btn-primary-rounded:hover {
  background-color: white;
  color: #2f39e6;
}

.btn-primary-rounded i {
  font-size: 16px !important;
}

.btn-primary:hover {
  background-color: white;
  color: #2f39e6;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid #2f39e6;
  color: #2f39e6;
}

.btn-secondary:hover {
  background-color: #2f39e6;
  color: white;
  border: 1px solid transparent;
}

.btn-secondary.btn-disabled,
.btn-secondary:disabled,
.btn-secondary.disabled {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.65;
  pointer-events: none;
  position: relative;
}

.btn-secondary.btn-disabled:hover,
.btn-secondary:disabled:hover,
.btn-secondary.disabled:hover {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #6c757d;
  transform: none;
}

/* Buttons End */

/* Animations */

@keyframes carouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Seamless partner logos marquee */
#logo-carousel {
  overflow: hidden;
}
#logo-carousel .carousel-track {
  display: flex;
  gap: 0;
  animation: carouselScroll 24s linear infinite;
  will-change: transform;
}
#logo-carousel .partner_logo {
  flex: 0 0 auto;
  width: 120px;
  height: 36px;
  object-fit: contain;
  object-position: center;
  margin: 0;
  padding: 0;
  display: block;
}

/* Hero Illustration Mouse Follow Effect */
.hero-illustration-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hero-illustration {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Enhanced smooth effect for better performance */
#hero-section {
  cursor: auto;
}

/* Animations End */

/* Services - Custom List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
}

.service-item {
  background: transparent;
  border-radius: 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(105, 105, 105, 0.15);
}

.service-item:last-child {
  border-bottom: 0;
}

.service-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #084298;
  background-color: #cfe2ff;
  border: 1px solid #b6d4fe;
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 0.5rem rgba(8, 66, 152, 0.06);
  font-weight: 700;
}

.service-title {
  margin: 0 0 4px 0;
  font-weight: 700;
  font-size: 22px;
}

.service-desc {
  margin: 0;
  color: #6c757d;
}

.service-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .service-illustration {
    display: none;
  }
}

@media (max-width: 576px) {
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* Services - Custom List End */

/* Portfolio Section */
#portfolio-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#portfolio-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23e9ecef" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.portfolio-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.portfolio-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.portfolio-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  height: auto;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(47, 57, 230, 0.2);
  border-color: rgba(47, 57, 230, 0.2);
}

.portfolio-thumbnail {
  position: relative;
  overflow: hidden;
  height: auto !important;
  min-height: unset !important;
  max-height: none !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.portfolio-thumbnail img {
  width: 100%;
  height: auto !important;
  max-height: none !important;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ensure height auto for all screen sizes - show 100% of thumbnail */
@media (max-width: 768px) {
  .portfolio-thumbnail {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }
  
  .portfolio-thumbnail img {
    height: auto !important;
    max-height: none !important;
    width: 100%;
  }
  
  .portfolio-content-overlay {
    padding: 20px 16px 16px;
  }
  
  .portfolio-title {
    font-size: 18px;
  }
  
  .portfolio-description {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .portfolio-thumbnail {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }
  
  .portfolio-thumbnail img {
    height: auto !important;
    max-height: none !important;
    width: 100%;
  }
  
  .portfolio-content-overlay {
    padding: 16px 14px 14px;
  }
  
  .portfolio-title {
    font-size: 16px;
  }
  
  .portfolio-description {
    font-size: 12px;
  }
  
  .rating-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 11px;
  }
  
  .rating-stars i {
    font-size: 12px;
  }
  
  .rating-text {
    font-size: 12px;
  }
}

.portfolio-card:hover .portfolio-thumbnail img {
  transform: scale(1.05);
}

.portfolio-blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

.portfolio-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  z-index: 2;
  color: #ffffff;
}

.portfolio-category {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.portfolio-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
  transform: translateY(-2px);
}

.portfolio-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 14px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.portfolio-rating-overlay {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-stars i {
  font-size: 14px;
  color: #ffc107;
  transition: all 0.2s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 2px rgba(255, 193, 7, 0.5));
}

.rating-stars i.empty,
.rating-stars i.far {
  color: rgba(255, 255, 255, 0.4);
  text-shadow: none;
  filter: none;
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.rating-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border: none;
  border-radius: 20px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 10;
  flex-shrink: 0;
}

.rating-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.rating-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.rating-btn:hover::before {
  left: 100%;
}

.rating-btn:active {
  transform: translateY(0) scale(0.95);
}

.like-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  border: none;
  border-radius: 20px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
  position: relative;
  overflow: hidden;
}

.like-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.like-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

.like-btn:hover::before {
  left: 100%;
}

.like-btn:active {
  transform: translateY(0) scale(0.95);
}

.like-btn.liked {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.like-btn.liked i {
  color: #fff;
}

.like-btn i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.like-count {
  font-size: 12px;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}


/* Portfolio Section Animations */
@keyframes portfolioCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-card {
  animation: portfolioCardFadeIn 0.6s ease-out forwards;
}

.portfolio-card:nth-child(1) { animation-delay: 0.1s; }
.portfolio-card:nth-child(2) { animation-delay: 0.2s; }
.portfolio-card:nth-child(3) { animation-delay: 0.3s; }
.portfolio-card:nth-child(4) { animation-delay: 0.4s; }
.portfolio-card:nth-child(5) { animation-delay: 0.5s; }
.portfolio-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design for Portfolio */
@media (max-width: 1200px) {
  .portfolio-thumbnail {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }
  
  .portfolio-content {
    padding: 24px 20px;
  }
  
  .portfolio-title {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .portfolio-thumbnail {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }
  
  .portfolio-content {
    padding: 20px 18px;
  }
  
  .portfolio-title {
    font-size: 19px;
  }
  
  .portfolio-description {
    font-size: 14px;
  }
  
  .portfolio-actions {
    margin-bottom: 16px;
    padding: 10px 0;
  }
  
  .rating-stars i {
    font-size: 13px;
  }
  
  .rating-text {
    font-size: 13px;
  }
  
  .rating-btn {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  
  .like-btn {
    padding: 6px 10px;
    font-size: 12px;
  }
  
  .like-btn i {
    font-size: 13px;
  }
  
  .like-count {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  #portfolio-section {
    padding: 60px 0;
  }
  
  .portfolio-thumbnail {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }
  
  .portfolio-content {
    padding: 18px 16px;
  }
  
  .portfolio-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .portfolio-description {
    font-size: 14px;
    margin-bottom: 14px;
  }
  
  .portfolio-actions {
    margin-bottom: 14px;
    padding: 8px 0;
  }
  
  .rating-stars i {
    font-size: 12px;
  }
  
  .rating-text {
    font-size: 12px;
  }
  
  .rating-btn {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
  
  .like-btn {
    padding: 5px 8px;
    font-size: 11px;
  }
  
  .like-btn i {
    font-size: 12px;
  }
  
  .like-count {
    font-size: 10px;
  }
  
  .portfolio-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}

@media (max-width: 576px) {
  #portfolio-section {
    padding: 50px 0;
  }
  
  .portfolio-card {
    border-radius: 16px;
    margin-bottom: 20px;
  }
  
  .portfolio-thumbnail {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }
  
  .portfolio-content {
    padding: 16px 14px;
  }
  
  .portfolio-title {
    font-size: 17px;
    margin-bottom: 8px;
  }
  
  .portfolio-description {
    font-size: 13px;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
  line-clamp: 2;
  }
  
  .portfolio-actions {
    margin-bottom: 12px;
    padding: 6px 0;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  .portfolio-rating {
    gap: 6px;
  }
  
  .rating-stars i {
    font-size: 11px;
  }
  
  .rating-text {
    font-size: 11px;
  }
  
  .rating-btn {
    width: 24px;
    height: 24px;
    font-size: 9px;
  }
  
  .like-btn {
    padding: 4px 6px;
    font-size: 10px;
    align-self: flex-end;
  }
  
  .like-btn i {
    font-size: 11px;
  }
  
  .like-count {
    font-size: 9px;
  }
  
  .portfolio-btn {
    font-size: 12px;
    padding: 7px 14px;
  }
  
  .portfolio-overlay-content {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .portfolio-thumbnail {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }
  
  .portfolio-content {
    padding: 14px 12px;
  }
  
  .portfolio-title {
    font-size: 16px;
  }
  
  .portfolio-description {
    font-size: 12px;
  }
  
  .portfolio-actions {
    margin-bottom: 10px;
    padding: 4px 0;
  }
  
  .rating-stars i {
    font-size: 10px;
  }
  
  .rating-text {
    font-size: 10px;
  }
  
  .rating-btn {
    width: 22px;
    height: 22px;
    font-size: 8px;
  }
  
  .like-btn {
    padding: 3px 5px;
    font-size: 9px;
  }
  
  .like-btn i {
    font-size: 10px;
  }
  
  .like-count {
    font-size: 8px;
  }
  
  .portfolio-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* Portfolio Section End */

/* Testimonials Section */
#testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#testimonials-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 100 100"><defs><pattern id="testimonials-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23e9ecef" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-grain)"/></svg>');
  pointer-events: none;
}

.testimonials-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-carousel {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(47, 57, 230, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(47, 57, 230, 0.12);
  border-color: rgba(47, 57, 230, 0.15);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  justify-content: center;
}

.testimonial-stars i {
  color: #ffd700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stars i {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  font-style: italic;
  text-align: center;
  margin: 0 0 30px 0;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.testimonial-text::before {
  content: '"';
  font-size: 60px;
  color: rgba(47, 57, 230, 0.1);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
  justify-content: center;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(47, 57, 230, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  border-color: rgba(47, 57, 230, 0.3);
  transform: scale(1.05);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
  transform: scale(1.1);
}

.author-info {
  text-align: left;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.testimonial-card:hover .author-name {
  color: #2f39e6;
}

.author-title {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  font-weight: 500;
}

.testimonials-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.testimonials-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(47, 57, 230, 0.2);
  background: #ffffff;
  color: #2f39e6;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials-nav-btn:hover {
  background: #2f39e6;
  color: #ffffff;
  border-color: #2f39e6;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(47, 57, 230, 0.3);
}

.testimonials-nav-btn:active {
  transform: translateY(0) scale(0.95);
}

.testimonials-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.testimonials-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonials-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(47, 57, 230, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonials-dot:hover {
  background: rgba(47, 57, 230, 0.4);
  transform: scale(1.2);
}

.testimonials-dot.active {
  background: #2f39e6;
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(47, 57, 230, 0.2);
}

/* Testimonials Animations */
@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  animation: testimonialFadeIn 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

/* Testimonials Responsive Design */
@media (max-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
    padding: 35px 25px;
    min-height: 260px;
  }
  
  .testimonials-track {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .testimonial-card {
    padding: 30px 20px;
    min-height: 240px;
  }
  
  .testimonial-text {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .author-name {
    font-size: 16px;
  }
  
  .author-title {
    font-size: 13px;
  }
  
  .testimonials-navigation {
    gap: 25px;
    margin-top: 35px;
  }
  
  .testimonials-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #testimonials-section {
    padding: 60px 0;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
    padding: 25px 20px;
    min-height: 220px;
  }
  
  .testimonials-track {
    gap: 15px;
  }
  
  .testimonial-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .testimonial-text::before {
    font-size: 50px;
    top: -5px;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
  }
  
  .author-name {
    font-size: 15px;
  }
  
  .author-title {
    font-size: 12px;
  }
  
  .testimonials-navigation {
    gap: 20px;
    margin-top: 30px;
  }
  
  .testimonials-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .testimonials-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .testimonials-carousel-container {
    padding: 0 15px;
  }
  
  .testimonial-card {
    padding: 20px 15px;
    min-height: 200px;
    border-radius: 16px;
  }
  
  .testimonial-text {
    font-size: 13px;
    margin-bottom: 18px;
  }
  
  .testimonial-text::before {
    font-size: 40px;
  }
  
  .testimonial-stars i {
    font-size: 14px;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
  }
  
  .author-name {
    font-size: 14px;
  }
  
  .author-title {
    font-size: 11px;
  }
  
  .testimonials-navigation {
    gap: 15px;
    margin-top: 25px;
  }
  
  .testimonials-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .testimonials-dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 18px 12px;
    min-height: 180px;
  }
  
  .testimonial-text {
    font-size: 12px;
    margin-bottom: 15px;
  }
  
  .testimonial-text::before {
    font-size: 35px;
  }
  
  .testimonial-stars i {
    font-size: 12px;
  }
  
  .author-avatar {
    width: 40px;
    height: 40px;
  }
  
  .author-name {
    font-size: 13px;
  }
  
  .author-title {
    font-size: 10px;
  }
  
  .testimonials-navigation {
    gap: 12px;
    margin-top: 20px;
  }
  
  .testimonials-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  
  .testimonials-dot {
    width: 7px;
    height: 7px;
  }
}

/* Email Subscription Section */
#subscription-section {
  background: linear-gradient(135deg, #2f39e6 0%, #2f39e6 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

#subscription-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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

#hero-section {
  background: linear-gradient(135deg, #2f39e6 0%, #2f39e6 100%);
  position: relative;
  overflow: hidden;
}

#hero-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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.subscription-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.subscription-content {
  color: white;
  text-align: center;
}

.subscription-header {
  margin-bottom: 32px;
}

.subscription-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.subscription-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.subscription-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.subscription-form:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.email-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.email-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.subscribe-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.subscribe-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ff7b7b 0%, #f06a62 100%);
}

.subscribe-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.subscribe-btn i {
  transition: all 0.3s ease;
}

.subscribe-btn:hover i {
  transform: translateX(2px) rotate(15deg);
}

.form-message {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-message.error {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.subscription-advantages {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.subscription-advantages .advantage-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.subscription-advantages .advantage-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.subscription-advantages .advantage-item:nth-child(3) {
  grid-column: 1 / -1;
  grid-row: 2;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .subscription-advantages {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .subscription-advantages .advantage-item:nth-child(1),
  .subscription-advantages .advantage-item:nth-child(2),
  .subscription-advantages .advantage-item:nth-child(3) {
    grid-column: 1;
    grid-row: unset;
  }
}

@media (max-width: 575.98px) {
  .subscription-advantages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  .subscription-advantages .advantage-item {
    width: 100%;
    min-width: 0;
  }
}

.advantage-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.advantage-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.advantage-item:hover::before {
  left: 100%;
}

.advantage-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.advantage-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.advantage-item:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #34ce57 0%, #26d9a3 100%);
}

.advantage-item:hover .advantage-icon::before {
  left: 100%;
}

.advantage-icon i {
  color: white;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.advantage-item:hover .advantage-icon i {
  transform: scale(1.2);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.advantage-content {
  flex: 1;
  color: white;
}

.advantage-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: white;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.advantage-item:hover .advantage-title {
  color: #f8f9fa;
  transform: translateX(2px);
}

.advantage-description {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  transition: all 0.3s ease;
}

.advantage-item:hover .advantage-description {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(2px);
}

/* Advantage items animation */
@keyframes advantageFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.advantage-item {
  animation: advantageFadeIn 0.6s ease-out forwards;
  opacity: 0;
}

/* Responsive Design for Subscription Section */
@media (max-width: 768px) {
  #subscription-section {
    padding: 50px 0;
  }
  
  .subscription-container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .subscription-title {
    font-size: 28px;
  }
  
  .subscription-description {
    font-size: 14px;
  }
  
  .subscription-form {
    padding: 20px;
  }
  
  .form-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .subscribe-btn {
    width: 100%;
    min-width: auto;
  }
  
  .email-input {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .subscribe-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .subscription-advantages {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .advantage-item {
    padding: 16px;
    border-radius: 12px;
  }
  
  .advantage-icon {
    width: 40px;
    height: 40px;
  }
  
  .advantage-icon i {
    font-size: 16px;
  }
  
  .advantage-title {
    font-size: 15px;
  }
  
  .advantage-description {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  #subscription-section {
    padding: 40px 0;
  }
  
  .subscription-container {
    padding: 0 15px;
  }
  
  .subscription-title {
    font-size: 24px;
  }
  
  .subscription-description {
    font-size: 13px;
  }
  
  .subscription-form {
    padding: 16px;
    border-radius: 16px;
  }
  
  .email-input {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 10px;
  }
  
  .subscribe-btn {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 10px;
  }
  
  .subscription-advantages {
    margin-top: 20px;
    gap: 10px;
  }
  
  .advantage-item {
    padding: 14px;
    border-radius: 10px;
    gap: 12px;
  }
  
  .advantage-icon {
    width: 36px;
    height: 36px;
  }
  
  .advantage-icon i {
    font-size: 14px;
  }
  
  .advantage-title {
    font-size: 14px;
  }
  
  .advantage-description {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .subscription-title {
    font-size: 22px;
  }
  
  .subscription-description {
    font-size: 12px;
  }
  
  .subscription-form {
    padding: 14px;
  }
  
  .email-input {
    padding: 9px 12px;
    font-size: 12px;
  }
  
  .subscribe-btn {
    padding: 9px 16px;
    font-size: 12px;
  }
  
  .subscription-advantages {
    margin-top: 18px;
    gap: 8px;
  }
  
  .advantage-item {
    padding: 12px;
    border-radius: 8px;
    gap: 10px;
  }
  
  .advantage-icon {
    width: 32px;
    height: 32px;
  }
  
  .advantage-icon i {
    font-size: 12px;
  }
  
  .advantage-title {
    font-size: 13px;
  }
  
  .advantage-description {
    font-size: 10px;
  }
}

/* Email Subscription Section End */

/* Footer */
.footer-section {
  background: #0c1010;
  color: #cdd4d4;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0 46px 0;
}
.footer-top {
  padding-bottom: 10px;
}
.footer-brand {
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: #e8ecec;
}
.footer-brand .brand-accent {
  color: #beffc3;
}

.footer-social li {
  color: white;
  font-size: 12px;

}
.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-block;
  border-radius: 50%;
  background: #2f39e6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.footer-capabilities {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 8px 0 0 0;
  margin: 0;
}
.footer-capabilities li {
  color: #a5a9f1;
  position: relative;
  padding-left: 12px;
}
.footer-capabilities li::before {
  content: "•";
  color: #a5a9f1;
  position: absolute;
  left: 0;
  top: 0;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

.footer-bottom {
  gap: 12px;
}
.footer-contacts {
  color: #a7b2b2;
}
.footer-contacts a {
  color: #e7ffe0;
  text-decoration: none;
}
.footer-contacts .sep {
  color: #3a443f;
  margin: 0 10px;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}
.footer-menu a {
  color: #cfd7d7;
  text-decoration: none;
}
.footer-menu a:hover {
  color: #2f39e6;
}

@media (max-width: 576px) {
  .footer-brand {
    font-size: 28px;
  }
  .footer-capabilities {
    flex-wrap: wrap;
  }
}
/* Footer End */

/* WhatsApp Button */
.whatsapp-button-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  pointer-events: none;
}

.whatsapp-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: auto;
  overflow: visible;
}

.whatsapp-button:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #2ee56a 0%, #1a9b8a 100%);
}

.whatsapp-button:active {
  transform: translateY(-1px) scale(1.05);
}

.whatsapp-icon {
  position: relative;
  z-index: 3;
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
}

.whatsapp-button:hover .whatsapp-icon {
  transform: rotate(15deg) scale(1.1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  transform: translate(-50%, -50%);
  animation: whatsappPulse 2s infinite;
  z-index: 1;
}

.whatsapp-pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  transform: translate(-50%, -50%);
  animation: whatsappPulse 2s infinite 0.5s;
}

.whatsapp-pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  transform: translate(-50%, -50%);
  animation: whatsappPulse 2s infinite 1s;
}

@keyframes whatsappPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 4;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(0, 0, 0, 0.9);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-5px);
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
  .whatsapp-button-container {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-icon {
    font-size: 24px;
  }
  
  .whatsapp-tooltip {
    right: 65px;
    font-size: 13px;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .whatsapp-button-container {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    font-size: 22px;
  }
  
  .whatsapp-tooltip {
    right: 60px;
    font-size: 12px;
    padding: 5px 8px;
  }
}

/* WhatsApp Button End */

/* Hamburger Menu / Mobile Canvas */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-canvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(135deg, #2f39e6 0%, #1a1f9e 100%);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100vh;
}

.mobile-menu-canvas.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  min-height: 64px;
}

.mobile-menu-logo {
  height: 28px;
  width: auto;
}

.mobile-menu-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-menu-nav {
  flex: 1;
  padding: 10px 0;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-nav::-webkit-scrollbar {
  width: 4px;
}

.mobile-menu-nav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.mobile-menu-nav::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  margin-bottom: 6px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
  min-height: 56px;
}

.mobile-menu-link i {
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.mobile-menu-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.5);
  color: white;
  padding-left: 26px;
}

.mobile-menu-badge {
  background: #ff4760;
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  padding: 2px 6px;
  margin-left: auto;
  box-shadow: 0 2px 6px rgba(255, 71, 96, 0.3);
  flex-shrink: 0;
}

.mobile-menu-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #FFD700;
  font-size: 12px;
  font-weight: 700;
  margin-left: auto;
  flex-shrink: 0;
}

.mobile-menu-rating::before {
  content: '★';
  color: #FFD700;
  font-size: 11px;
}

.mobile-menu-profile {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mobile-profile-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-profile-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.mobile-profile-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-profile-name {
  color: white;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.mobile-profile-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.2;
}

.mobile-profile-btn i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-profile-btn:hover i {
  color: white;
  transform: translateX(2px);
}

.mobile-menu-actions {
  padding: 18px 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-actions .btn {
  font-size: 16px;
  padding: 14px 20px;
  font-weight: 600;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-menu-lang {
  margin-top: 0;
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  padding: 14px 20px;
  width: 100%;
  min-height: 52px;
  font-weight: 600;
}

.mobile-lang-btn i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-lang-flag {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  flex-shrink: 0;
}

.mobile-lang-text {
  flex: 1;
  text-align: left;
}

/* Language Modal */
.lang-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lang-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lang-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 400px;
  background: linear-gradient(135deg, #2f39e6 0%, #1a1f9e 100%);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow: hidden;
}

.lang-modal-overlay.active ~ .lang-modal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.lang-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-modal-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.lang-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lang-modal-content {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lang-option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-option-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
}

.lang-option-card.selected {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.lang-option-flag {
  width: 40px;
  height: 30px;
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lang-option-name {
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.lang-option-code {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.2;
}

.lang-option-check {
  font-size: 20px;
  color: #1db954;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.lang-option-card.selected .lang-option-check {
  opacity: 1;
  transform: scale(1);
}

/* Language Modal Responsive */
@media (max-width: 480px) {
  .lang-modal {
    width: 95%;
  }
  
  .lang-modal-header {
    padding: 16px 20px;
  }
  
  .lang-modal-title {
    font-size: 16px;
  }
  
  .lang-modal-close {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .lang-modal-content {
    padding: 12px 16px 16px;
    gap: 10px;
  }
  
  .lang-option-card {
    padding: 12px;
    gap: 12px;
  }
  
  .lang-option-flag {
    width: 36px;
    height: 27px;
  }
  
  .lang-option-name {
    font-size: 15px;
  }
  
  .lang-option-code {
    font-size: 12px;
  }
  
  .lang-option-check {
    font-size: 18px;
  }
}

/* Animation for menu items */
.mobile-menu-list li {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.4s ease forwards;
}

.mobile-menu-list li:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu-list li:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu-list li:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu-list li:nth-child(4) { animation-delay: 0.2s; }
.mobile-menu-list li:nth-child(5) { animation-delay: 0.25s; }
.mobile-menu-list li:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reset animation when menu is closed */
.mobile-menu-canvas:not(.active) .mobile-menu-list li {
  animation: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .mobile-menu-canvas {
    width: 300px;
  }
}

@media (max-width: 992px) {
  .mobile-menu-canvas {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-canvas {
    width: 100%;
    max-width: 100%;
  }
  
  .mobile-menu-header {
    padding: 18px 20px;
  }
  
  .mobile-menu-logo {
    height: 32px;
  }
  
  .mobile-menu-close {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  .mobile-menu-link {
    padding: 18px 20px;
    font-size: 17px;
    min-height: 60px;
  }
  
  .mobile-menu-link i {
    width: 26px;
    font-size: 20px;
  }
  
  .mobile-menu-profile {
    padding: 20px;
  }
  
  .mobile-profile-btn {
    padding: 14px;
    gap: 14px;
  }
  
  .mobile-profile-img {
    width: 60px;
    height: 60px;
  }
  
  .mobile-profile-name {
    font-size: 18px;
  }
  
  .mobile-profile-title {
    font-size: 14px;
  }
  
  .mobile-menu-actions {
    padding: 20px;
    gap: 14px;
  }
  
  .mobile-menu-actions .btn {
    font-size: 17px;
    padding: 16px 24px;
    min-height: 56px;
  }
  
  .mobile-lang-btn {
    font-size: 17px;
    padding: 16px 24px;
    min-height: 56px;
  }
  
  .mobile-lang-flag {
    width: 28px;
    height: 21px;
  }
}

@media (max-width: 576px) {
  .mobile-menu-header {
    padding: 16px 18px;
  }
  
  .mobile-menu-logo {
    height: 30px;
  }
  
  .mobile-menu-close {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  
  .mobile-menu-nav {
    padding: 8px 0;
  }
  
  .mobile-menu-list li {
    margin-bottom: 6px;
  }
  
  .mobile-menu-link {
    padding: 16px 18px;
    font-size: 16px;
    gap: 12px;
    min-height: 58px;
  }
  
  .mobile-menu-link i {
    width: 24px;
    font-size: 19px;
  }
  
  .mobile-menu-profile {
    padding: 18px;
  }
  
  .mobile-profile-btn {
    padding: 12px;
    gap: 12px;
  }
  
  .mobile-profile-img {
    width: 58px;
    height: 58px;
  }
  
  .mobile-profile-name {
    font-size: 17px;
  }
  
  .mobile-profile-title {
    font-size: 13px;
  }
  
  .mobile-menu-actions {
    padding: 18px;
    gap: 12px;
  }
  
  .mobile-menu-actions .btn {
    font-size: 16px;
    padding: 14px 20px;
    min-height: 54px;
  }
  
  .mobile-lang-btn {
    font-size: 16px;
    padding: 14px 20px;
    min-height: 54px;
  }
  
  .mobile-lang-flag {
    width: 26px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .mobile-menu-header {
    padding: 14px 16px;
  }
  
  .mobile-menu-logo {
    height: 28px;
  }
  
  .mobile-menu-close {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
  
  .mobile-menu-nav {
    padding: 6px 0;
  }
  
  .mobile-menu-link {
    padding: 14px 16px;
    font-size: 15px;
    gap: 10px;
    min-height: 56px;
  }
  
  .mobile-menu-link i {
    width: 22px;
    font-size: 18px;
  }
  
  .mobile-menu-badge {
    font-size: 11px;
    padding: 3px 7px;
  }
  
  .mobile-menu-rating {
    font-size: 13px;
  }
  
  .mobile-menu-profile {
    padding: 16px;
  }
  
  .mobile-profile-btn {
    padding: 10px;
    gap: 10px;
  }
  
  .mobile-profile-img {
    width: 54px;
    height: 54px;
  }
  
  .mobile-profile-name {
    font-size: 16px;
  }
  
  .mobile-profile-title {
    font-size: 12px;
  }
  
  .mobile-profile-btn i {
    font-size: 14px;
  }
  
  .mobile-menu-actions {
    padding: 16px;
    gap: 10px;
  }
  
  .mobile-menu-actions .btn {
    font-size: 15px;
    padding: 12px 18px;
    min-height: 52px;
  }
  
  .mobile-lang-btn {
    font-size: 15px;
    padding: 12px 18px;
    min-height: 52px;
  }
  
  .mobile-lang-flag {
    width: 24px;
    height: 18px;
  }
}

@media (max-height: 700px) {
  .mobile-menu-nav {
    padding: 6px 0;
  }
  
  .mobile-menu-link {
    padding: 12px 18px;
    min-height: 50px;
    font-size: 15px;
  }
  
  .mobile-menu-link i {
    width: 20px;
    font-size: 17px;
  }
  
  .mobile-menu-list li {
    margin-bottom: 4px;
  }
  
  .mobile-menu-header {
    padding: 14px 18px;
  }
  
  .mobile-menu-profile {
    padding: 14px 18px;
  }
  
  .mobile-profile-img {
    width: 50px;
    height: 50px;
  }
  
  .mobile-profile-name {
    font-size: 16px;
  }
  
  .mobile-profile-title {
    font-size: 12px;
  }
  
  .mobile-menu-actions {
    padding: 14px 18px;
    gap: 10px;
  }
  
  .mobile-menu-actions .btn {
    padding: 12px 18px;
    min-height: 48px;
    font-size: 15px;
  }
  
  .mobile-lang-btn {
    padding: 12px 18px;
    min-height: 48px;
    font-size: 15px;
  }
}

/* Hamburger Menu End */

/* Profile Modal */
.profile-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.profile-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.profile-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: linear-gradient(135deg, #2f39e6 0%, #1a1f9e 100%);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profile-modal-overlay.active ~ .profile-modal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.profile-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}




.profile-modal-title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.profile-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.profile-modal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
  border-radius: 0 0 20px 20px;
}

.profile-modal-content::-webkit-scrollbar {
  width: 6px;
}

.profile-modal-content::-webkit-scrollbar-track {
  background: rgba(47, 57, 230, 0.05);
}

.profile-modal-content::-webkit-scrollbar-thumb {
  background: rgba(47, 57, 230, 0.2);
  border-radius: 6px;
}

.profile-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(47, 57, 230, 0.3);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(47, 57, 230, 0.05) 0%, rgba(47, 57, 230, 0.02) 100%);
  border-bottom: 1px solid rgba(47, 57, 230, 0.1);
  flex-shrink: 0;
}

.profile-avatar-container {
  position: relative;
  flex-shrink: 0;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 6px 20px rgba(47, 57, 230, 0.2);
  transition: all 0.3s ease;
}

.profile-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(47, 57, 230, 0.3);
}

.profile-status {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(40, 167, 69, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.profile-title {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-weight: 500;
}

.profile-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars i {
  font-size: 16px;
  color: #ffc107;
  text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}

.profile-details {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-section {
  margin-bottom: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 12px 0;
  padding-bottom: 6px;
}

.section-title i {
  color: #2f39e6;
  font-size: 16px;
}

.section-content {
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: #2f39e6;
  color: white;
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(47, 57, 230, 0.2);
}

.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 57, 230, 0.3);
}

/* Contact Info Alerts */
.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-alert {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.contact-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-right: 16px;
  flex-shrink: 0;
}

.contact-alert-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.contact-alert-content strong {
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

.contact-alert-content span {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
}

/* Email Alert */
.contact-alert-email {
  border-color: #d1ecf1;
  background: linear-gradient(135deg, rgba(209, 236, 241, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.contact-alert-email .contact-alert-icon {
  background: #bee5eb;
  color: #0c5460;
}

/* Phone Alert */
.contact-alert-phone {
  border-color: #d4edda;
  background: linear-gradient(135deg, rgba(212, 237, 218, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.contact-alert-phone .contact-alert-icon {
  background: #c3e6cb;
  color: #155724;
}

/* Location Alert */
.contact-alert-location {
  border-color: #f8d7da;
  background: linear-gradient(135deg, rgba(248, 215, 218, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.contact-alert-location .contact-alert-icon {
  background: #f5c6cb;
  color: #721c24;
}

/* Hours Alert */
.contact-alert-hours {
  border-color: #fff3cd;
  background: linear-gradient(135deg, rgba(255, 243, 205, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.contact-alert-hours .contact-alert-icon {
  background: #ffeaa7;
  color: #856404;
}

/* Hover Effects */
.contact-alert:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 57, 230, 0.15);
}

.contact-alert-email:hover {
  border-color: #bee5eb;
}

.contact-alert-phone:hover {
  border-color: #c3e6cb;
}

.contact-alert-location:hover {
  border-color: #f5c6cb;
}

.contact-alert-hours:hover {
  border-color: #ffeaa7;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, rgba(47, 57, 230, 0.05) 0%, rgba(47, 57, 230, 0.02) 100%);
  border-radius: 12px;
  border: 1px solid rgba(47, 57, 230, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: linear-gradient(135deg, rgba(47, 57, 230, 0.1) 0%, rgba(47, 57, 230, 0.05) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(47, 57, 230, 0.1);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #2f39e6;
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.profile-actions {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(47, 57, 230, 0.02);
  border-top: 1px solid rgba(47, 57, 230, 0.1);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.profile-action-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profile-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(47, 57, 230, 0.2);
}

/* Profile Modal Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .profile-modal {
    width: 85%;
    max-width: 500px;
  }
  
  .profile-header {
    padding: 16px 20px;
  }
  
  .profile-avatar {
    width: 70px;
    height: 70px;
  }
  
  .profile-name {
    font-size: 20px;
  }
  
  .profile-title {
    font-size: 13px;
  }
  
  .section-title {
    font-size: 15px;
  }
  
  .section-content {
    font-size: 12px;
  }
  
  .skill-tag {
    font-size: 10px;
    padding: 3px 6px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-item {
    padding: 12px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .profile-modal {
    width: 90%;
    max-width: 400px;
  }
  
  .profile-modal-header {
    padding: 16px 20px;
  }
  
  .profile-modal-title {
    font-size: 18px;
  }
  
  .profile-modal-close {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }
  
  .profile-avatar {
    width: 60px;
    height: 60px;
  }
  
  .profile-name {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .profile-title {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .profile-rating {
    gap: 8px;
  }
  
  .rating-stars i {
    font-size: 12px;
  }
  
  .rating-text {
    font-size: 11px;
  }
  
  .profile-details {
    padding: 12px 16px;
    gap: 16px;
  }
  
  .section-title {
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 4px;
  }
  
  .section-title i {
    font-size: 12px;
  }
  
  .section-content {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .skills-container {
    gap: 4px;
  }
  
  .skill-tag {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 12px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .stat-item {
    padding: 10px;
  }
  
  .stat-number {
    font-size: 18px;
  }
  
  .stat-label {
    font-size: 9px;
  }
  
  .profile-actions {
    padding: 12px 16px;
    flex-direction: column;
    gap: 8px;
  }
  
  .profile-action-btn {
    min-width: auto;
    font-size: 12px;
    padding: 8px 12px;
  }
  
  /* Contact Alert Responsive - 768px */
  .contact-info-container {
    gap: 10px;
  }
  
  .contact-alert {
    padding: 12px;
  }
  
  .contact-alert-icon {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }
  
  .contact-alert-content strong {
    font-size: 13px;
  }
  
  .contact-alert-content span {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .profile-modal {
    width: 95%;
    max-width: 350px;
  }
  
  .profile-modal-header {
    padding: 12px 16px;
  }
  
  .profile-modal-title {
    font-size: 16px;
  }
  
  .profile-modal-close {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .profile-header {
    padding: 12px;
  }
  
  .profile-avatar {
    width: 50px;
    height: 50px;
  }
  
  .profile-name {
    font-size: 18px;
    margin-bottom: 3px;
  }
  
  .profile-title {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .profile-rating {
    gap: 6px;
  }
  
  .rating-stars i {
    font-size: 10px;
  }
  
  .rating-text {
    font-size: 10px;
  }
  
  .profile-details {
    padding: 8px 12px;
    gap: 12px;
  }
  
  .section-title {
    font-size: 13px;
    margin-bottom: 6px;
    padding-bottom: 3px;
  }
  
  .section-title i {
    font-size: 11px;
  }
  
  .section-content {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .skills-container {
    gap: 3px;
  }
  
  .skill-tag {
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 10px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  .stat-item {
    padding: 8px;
  }
  
  .stat-number {
    font-size: 16px;
  }
  
  .stat-label {
    font-size: 8px;
  }
  
  .profile-actions {
    padding: 8px 12px;
    flex-direction: column;
    gap: 6px;
  }
  
  .profile-action-btn {
    min-width: auto;
    font-size: 11px;
    padding: 6px 10px;
  }
  
  /* Contact Alert Responsive - 576px */
  .contact-info-container {
    gap: 8px;
  }
  
  .contact-alert {
    padding: 10px;
  }
  
  .contact-alert-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  .contact-alert-content strong {
    font-size: 12px;
  }
  
  .contact-alert-content span {
    font-size: 11px;
  }
}

/* Apply Now Modal */
.apply-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.apply-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.apply-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 500px;
  background: linear-gradient(135deg, #2f39e6 0%, #1a1f9e 100%);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.apply-modal-overlay.active + .apply-modal,
.apply-modal-overlay.active ~ .apply-modal,
.apply-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.apply-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.apply-modal-title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.apply-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.apply-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.apply-modal-content {
  padding: 24px;
  background: white;
  border-radius: 0 0 20px 20px;
}

.apply-modal-description {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}

.apply-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.apply-option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.apply-option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.apply-option-card:hover::before {
  left: 100%;
}

.apply-option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.apply-option-email:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.apply-option-whatsapp:hover {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
}

.apply-option-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.apply-option-email .apply-option-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.apply-option-whatsapp .apply-option-icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.apply-option-card:hover .apply-option-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.apply-option-content {
  flex: 1;
  min-width: 0;
}

.apply-option-title {
  color: #2d3748;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.apply-option-subtitle {
  color: #718096;
  font-size: 14px;
  margin: 0;
  transition: color 0.3s ease;
}

.apply-option-card:hover .apply-option-title,
.apply-option-card:hover .apply-option-subtitle {
  color: white;
}

.apply-option-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(47, 57, 230, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f39e6;
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.apply-option-card:hover .apply-option-arrow {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateX(4px);
}

/* Apply Modal Responsive */
@media (max-width: 768px) {
  .apply-modal {
    width: 95%;
    max-width: 400px;
  }

  .apply-modal-header {
    padding: 16px 20px;
  }

  .apply-modal-title {
    font-size: 20px;
  }

  .apply-modal-close {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .apply-modal-content {
    padding: 20px;
  }

  .apply-modal-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .apply-option-card {
    padding: 16px;
    gap: 12px;
  }

  .apply-option-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .apply-option-title {
    font-size: 16px;
  }

  .apply-option-subtitle {
    font-size: 13px;
  }

  .apply-option-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .apply-modal {
    width: 95%;
    max-width: 350px;
  }

  .apply-modal-header {
    padding: 14px 16px;
  }

  .apply-modal-title {
    font-size: 18px;
  }

  .apply-modal-close {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .apply-modal-content {
    padding: 16px;
  }

  .apply-modal-description {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .apply-option-card {
    padding: 14px;
    gap: 10px;
  }

  .apply-option-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .apply-option-title {
    font-size: 15px;
  }

  .apply-option-subtitle {
    font-size: 12px;
  }

  .apply-option-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .profile-modal {
    width: 98%;
    max-width: 320px;
  }
  
  .profile-modal-header {
    padding: 10px 12px;
  }
  
  .profile-modal-title {
    font-size: 14px;
  }
  
  .profile-modal-close {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  
  .profile-header {
    padding: 8px;
  }
  
  .profile-avatar {
    width: 40px;
    height: 40px;
  }
  
  .profile-name {
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .profile-title {
    font-size: 10px;
    margin-bottom: 4px;
  }
  
  .profile-rating {
    gap: 4px;
  }
  
  .rating-stars i {
    font-size: 8px;
  }
  
  .rating-text {
    font-size: 8px;
  }
  
  .profile-details {
    padding: 6px 8px;
    gap: 10px;
  }
  
  .section-title {
    font-size: 12px;
    margin-bottom: 4px;
    padding-bottom: 2px;
  }
  
  .section-title i {
    font-size: 10px;
  }
  
  .section-content {
    font-size: 10px;
    line-height: 1.2;
  }
  
  .skills-container {
    gap: 2px;
  }
  
  .skill-tag {
    font-size: 8px;
    padding: 1px 3px;
    border-radius: 8px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  
  .stat-item {
    padding: 6px;
  }
  
  .stat-number {
    font-size: 14px;
  }
  
  .stat-label {
    font-size: 7px;
  }
  
  .profile-actions {
    padding: 6px 8px;
    flex-direction: column;
    gap: 4px;
  }
  
  .profile-action-btn {
    min-width: auto;
    font-size: 10px;
    padding: 4px 8px;
  }
  
  /* Contact Alert Responsive - 480px */
  .contact-info-container {
    gap: 6px;
  }
  
  .contact-alert {
    padding: 8px;
  }
  
  .contact-alert-icon {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }
  
  .contact-alert-content strong {
    font-size: 11px;
  }
  
  .contact-alert-content span {
    font-size: 10px;
  }
}





/* Services Page Specific Styles */
  #services-hero-section {
    background: linear-gradient(135deg, #2f39e6 0%, #2f39e6 100%);
    position: relative;
    overflow: hidden;
  }

  #services-hero-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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
  }

  /* Service Cards */
  .service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(47, 57, 230, 0.15);
  }

  .service-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }

  .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .service-card:hover .service-card-image img {
    transform: scale(1.1);
  }

  .service-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2f39e6 0%, #1a1f9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(47, 57, 230, 0.4);
  }

  .service-card-badge i {
    font-size: 28px;
    color: white;
  }

  .service-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .service-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
  }

  .service-card-description {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .service-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }

  .service-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #495057;
    font-size: 14px;
  }

  .service-card-features li i {
    color: #28a745;
    font-size: 16px;
  }

  /* Optional/Variant Feature Styling */
  .service-card-features li.video-option {
    position: relative;
    padding: 10px 90px 10px 18px;
    margin-top: 8px;
    margin-left: 12px;
    background: linear-gradient(135deg, rgba(47, 57, 230, 0.08) 0%, rgba(47, 57, 230, 0.03) 100%);
    border: 1px dashed rgba(47, 57, 230, 0.3);
    border-radius: 10px;
    color: #495057;
    font-style: italic;
  }

  .service-card-features li.video-option::before {
    content: '+';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #2f39e6 0%, #1a1f9e 100%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    box-shadow: 0 2px 8px rgba(47, 57, 230, 0.3);
    z-index: 1;
  }

  .service-card-features li.video-option i {
    color: #2f39e6;
    font-size: 14px;
    margin-right: 8px;
  }

  .service-card-features li.video-option::after {
    content: 'Əlavə xidmət';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #6c757d;
    font-weight: 600;
    font-style: normal;
    background: rgba(255, 255, 255, 0.9);
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    border: 1px solid rgba(47, 57, 230, 0.1);
  }

  /* Responsive styles for video-option */
  @media (max-width: 768px) {
    .service-card-features li.video-option {
      padding-right: 80px;
      margin-left: 8px;
      font-size: 13px;
    }

    .service-card-features li.video-option::before {
      width: 20px;
      height: 20px;
      font-size: 12px;
      left: -10px;
    }

    .service-card-features li.video-option::after {
      font-size: 9px;
      padding: 2px 6px;
      right: 10px;
    }
  }

  @media (max-width: 480px) {
    .service-card-features li.video-option {
      padding-right: 70px;
      margin-left: 4px;
      font-size: 12px;
      padding-left: 16px;
    }

    .service-card-features li.video-option::before {
      width: 18px;
      height: 18px;
      font-size: 11px;
      left: -9px;
    }

    .service-card-features li.video-option::after {
      font-size: 8px;
      padding: 2px 5px;
      right: 8px;
    }

    .service-card-features li.video-option i {
      font-size: 12px;
    }
  }

  .service-card-price {
    padding: 16px;
    background: linear-gradient(135deg, rgba(47, 57, 230, 0.05) 0%, rgba(47, 57, 230, 0.02) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    margin-top: auto;
    text-align: center;
  }

  .price-from {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
  }

  .price-amount {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2f39e6;
  }

  /* Process Steps */
  .process-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
  }

  .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(47, 57, 230, 0.15);
  }

  .process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(47, 57, 230, 0.1);
  }

  .process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #2f39e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .process-icon i {
    font-size: 30px;
    color: white;
  }

  .process-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
  }

  .process-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }

  /* Why Choose Cards */
  .why-choose-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
  }

  .why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(47, 57, 230, 0.15);
  }

  .why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #2f39e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .why-choose-icon i {
    font-size: 30px;
    color: white;
  }

  .why-choose-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
  }

  .why-choose-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }

/* ============================================
   OFFERS PAGE STYLES
   ============================================ */

/* Offer Card Enhancements */
.offer-card {
  position: relative;
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Offer Badge */
.offer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: pulse 2s infinite;
}

.offer-badge.hot-deal {
  background: linear-gradient(135deg, #ff4760 0%, #ff1744 100%);
  color: white;
}

.offer-badge.premium {
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #2c3e50;
}

.offer-badge.new {
  background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
  color: white;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Offer Features List */
.offer-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.offer-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #495057;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-features li:last-child {
  border-bottom: none;
}

.offer-features li i {
  color: #28a745;
  font-size: 16px;
  flex-shrink: 0;
}

/* Offer Pricing */
.offer-pricing {
  background: linear-gradient(135deg, rgba(47, 57, 230, 0.05) 0%, rgba(47, 57, 230, 0.02) 100%);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  text-align: center;
}

.price-strike {
  margin-bottom: 8px;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 18px;
  font-weight: 600;
}

.price-current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.new-price {
  color: #2f39e6;
  font-size: 32px;
  font-weight: 700;
}

.price-badge {
  background: #28a745;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.price-note {
  margin-top: 8px;
  color: #6c757d;
  font-size: 13px;
  font-style: italic;
}

/* Offer Timer */
.offer-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 71, 96, 0.1);
  border-radius: 8px;
  margin: 16px 0;
  color: #ff4760;
  font-size: 14px;
}

.offer-timer i {
  font-size: 16px;
}

.offer-timer strong {
  font-weight: 700;
}

/* Offers Hero Section */
#offers-hero-section {
  background: linear-gradient(135deg, #2f39e6 0%, #1a1f9e 100%);
  position: relative;
  overflow: hidden;
}

#offers-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

/* Responsive Adjustments for Offers */
@media (max-width: 768px) {
  .offer-badge {
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .new-price {
    font-size: 28px;
  }

  .old-price {
    font-size: 16px;
  }

  .offer-features li {
    font-size: 13px;
  }

  .offer-timer {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .offer-pricing {
    padding: 12px;
  }

  .new-price {
    font-size: 24px;
  }

  .price-current {
    flex-direction: column;
    gap: 8px;
  }
}


/* Professional Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-logo {
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer-description {
    font-size: 0.95rem;
}

.footer-social-title {
    text-transform: uppercase;
}

.footer-social .social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social .social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2f39e6, #5a63f5);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2f39e6;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact-info {
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: #2f39e6;
    transform: translateX(5px);
}

.contact-item i {
    color: #2f39e6;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-details a,
.contact-details span {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2f39e6;
}

.footer-divider {
    opacity: 0.1;
}

.footer-copyright {
    letter-spacing: 0.3px;
}

.footer-legal .legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal .legal-link:hover {
    color: #fff;
}

.footer-legal .legal-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2f39e6;
    transition: width 0.3s ease;
}

.footer-legal .legal-link:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-section {
        padding-top: 3rem;
    }

    .footer-main {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 767px) {
    .footer-heading::after {
        width: 30px;
        height: 2px;
    }

    .footer-bottom {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .footer-legal {
        flex-wrap: wrap;
    }
}



        /* Breadcrumb */
        .breadcrumb-section {
          padding: 28px 0;
          background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
          position: relative;
          overflow: hidden;
      }

      .breadcrumb-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 3px;
          background: linear-gradient(135deg, #3b82f6 0%, #2f39e6 100%);
      }

      .breadcrumb {
          background: transparent;
          margin: 0;
          padding: 0;
          display: flex;
          align-items: center;
          gap: 8px;
          flex-wrap: wrap;
      }

      .breadcrumb-item {
          display: flex;
          align-items: center;
          gap: 8px;
      }

      .breadcrumb-item a {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          color: #64748b;
          text-decoration: none;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          font-weight: 500;
          font-size: 0.95rem;
          padding: 8px 14px;
          border-radius: 10px;
          position: relative;
          background: transparent;
      }

      .breadcrumb-item a i {
          font-size: 0.85rem;
          color: #94a3b8;
          transition: all 0.3s ease;
      }

      .breadcrumb-item a:hover {
          color: #2f39e6;
          background: rgba(59, 130, 246, 0.08);
          transform: translateY(-1px);
      }

      .breadcrumb-item a:hover i {
          color: #2f39e6;
          transform: scale(1.1);
      }

      .breadcrumb-item.active {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          color: #1e293b;
          font-weight: 700;
          font-size: 0.95rem;
          padding: 8px 14px;
          border-radius: 10px;
          background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(47, 57, 230, 0.05) 100%);
          border: 1px solid rgba(59, 130, 246, 0.2);
          position: relative;
      }

      .breadcrumb-item.active::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 3px;
          height: 100%;
          background: linear-gradient(135deg, #3b82f6, #2f39e6);
          border-radius: 10px 0 0 10px;
      }

      .breadcrumb-item.active i {
          color: #2f39e6;
          font-size: 0.85rem;
      }

      .breadcrumb-item + .breadcrumb-item::before {
          display: none;
      }

      .breadcrumb-separator {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 24px;
          height: 24px;
          color: #94a3b8;
          font-size: 0.75rem;
          opacity: 0.5;
      }

      .breadcrumb-separator i {
          color: #94a3b8;
      }

      /* Responsive Breadcrumb */
      @media (max-width: 767.98px) {
          .breadcrumb-section {
              padding: 20px 0;
          }

          .breadcrumb-item a,
          .breadcrumb-item.active {
              padding: 6px 10px;
              font-size: 0.85rem;
          }

          .breadcrumb-item a i,
          .breadcrumb-item.active i {
              font-size: 0.75rem;
          }

          .breadcrumb-separator {
              width: 20px;
              height: 20px;
          }

          .breadcrumb-separator i {
              font-size: 0.65rem;
          }
      }