/* Custom Enhancements for Import Globals - June 2025 */

/* General enhancements */
body {
  scroll-behavior: smooth;
}

/* Animated elements */
.animated-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced banner section */
.banner-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 50%, #f5f5f5 100%);
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(240, 240, 240, 0.2);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.banner-section h1 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #333;
  position: relative;
  z-index: 1;
}

.banner-section ul li {
  position: relative;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}


.banner-section ul li:hover {
  transform: translateX(5px);
}

/* Floating contact button */
.floating-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #4CAF50;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.floating-contact-btn.visible {
  opacity: 1;
  visibility: visible;
}

.floating-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.floating-contact-btn i {
  font-size: 24px;
}

/* Enhanced feature section */
.feature-block.style-two .inner-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

.feature-block.style-two .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-block.style-two .imgicon {
  transition: all 0.4s ease;
}

.feature-block.style-two .inner-box:hover .imgicon {
  transform: scale(1.1) rotate(5deg);
}

.feature-read-more {
  font-size: 14px;
  color: #4CAF50;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.feature-read-more:hover {
  color: #388E3C;
  text-decoration: none;
  transform: translateX(5px);
}

.feature-read-more i {
  font-size: 12px;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.feature-block.style-two .inner-box:hover .feature-read-more i {
  transform: translateX(3px);
}

/* Interactive country selection */
.region-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #666;
  padding-left: 10px;
  border-left: 3px solid #4CAF50;
}

.region-link {
  display: block;
  margin-bottom: 5px;
  text-decoration: none !important;
}

#country-index .continent-button {
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
  padding: 10px 15px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
}

#country-index .continent-button:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #4CAF50;
  transition: width 0.3s ease;
}

#country-index .continent-button:hover {
  background: #f0f0f0;
}

#country-index .continent-button:hover:before,
#country-index .continent-button.active:before {
  width: 100%;
}

#country-index .continent-button.active {
  background: #f0f0f0;
  color: #4CAF50;
  font-weight: 600;
}

.region-icon {
  margin-right: 10px;
  color: #4CAF50;
}

/* Country search box */
.country-search-container {
  margin-bottom: 30px;
}

.country-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  padding: 5px;
}

.country-search-box input {
  flex: 1;
  border: none;
  padding: 15px 20px 15px 50px;
  font-size: 16px;
  border-radius: 50px;
}

.country-search-box input:focus {
  outline: none;
  box-shadow: none;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #4CAF50;
  font-size: 18px;
}

.btn-search {
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background: #388E3C;
}

/* Region header */
.region-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.current-region-name {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.country-count {
  background: #f0f0f0;
  padding: 5px 15px;
  border-radius: 20px;
  color: #666;
  font-size: 14px;
}

/* Country grid */
.country-grid {
  padding-top: 10px;
}

.country-item {
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.servicelist .inner-box {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.servicelist .inner-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.country-flag {
  position: relative;
  overflow: hidden;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}

.country-flag img {
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.servicelist .inner-box:hover .country-flag img {
  transform: scale(1.1);
}

.lower-content {
  padding: 15px;
  position: relative;
}

.lower-content h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.country-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.data-type {
  font-size: 12px;
  color: #888;
  background: #f0f0f0;
  padding: 3px 8px;
  border-radius: 3px;
}

.explore-btn {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4CAF50;
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.servicelist .inner-box:hover .explore-btn {
  transform: translateX(3px);
}

.coming-soon {
  font-size: 12px;
  color: #ff9800;
}

/* Hide class */
.hide {
  display: none !important;
}

/* Enhanced testimonial section */
.testimonial-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  position: relative;
}

.testimonial-section:before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.05);
  top: -150px;
  right: -150px;
  z-index: 0;
}

.testimonial-section:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.05);
  bottom: -100px;
  left: -100px;
  z-index: 0;
}

.testimonial-block .inner-box {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
  background: #fff;
  transition: all 0.3s ease;
}

.testimonial-block .inner-box:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.testimonial-block .inner-box:before {
  content: '\f10d';
  font-family: 'FontAwesome';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: rgba(76, 175, 80, 0.1);
  z-index: -1;
}

.rating {
  margin-bottom: 15px;
}

.rating .fa {
  color: #FFD700;
  margin-right: 2px;
}

/* Enhanced form styling */
.case-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.case-form .form-group input,
.case-form .form-group textarea {
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  padding: 12px 15px 12px 40px;
  transition: all 0.3s ease;
  width: 100%;
}

.case-form .form-group input:focus,
.case-form .form-group textarea:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.case-form .form-group.focused input {
  padding-top: 20px;
}

.form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #4CAF50;
}

.captcha-container {
  position: relative;
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-radius: 5px;
  height: 100%;
}

.captcha-container input {
  background: transparent;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}

.case-form .theme-btn {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  padding: 12px 30px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.case-form .theme-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: all 0.4s ease;
}

.case-form .theme-btn:hover:before {
  left: 100%;
}

/* Contact info box */
.contact-info-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.contact-info-box p {
  color: #666;
  margin-bottom: 30px;
}

.contact-features {
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-item .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #4CAF50;
}

.feature-item .text {
  font-weight: 500;
  color: #555;
}

.phone-link {
  display: inline-block;
  margin-top: 10px;
  color: #4CAF50;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: #388E3C;
  text-decoration: none;
  transform: translateY(-2px);
}

.phone-link i {
  margin-right: 5px;
  animation: pulse 2s infinite;
}

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

/* Statistics counters */
.counter-container {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
  position: relative;
}

.counter-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.5), transparent);
}

.counter-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.counter-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.counter-icon {
  margin-bottom: 15px;
}

.counter-value {
  font-size: 40px;
  font-weight: 700;
  color: #4CAF50;
  margin-bottom: 10px;
  line-height: 1;
}

.counter-title {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* Image hover effects */
.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.5s ease;
}

.hover-zoom:hover img {
  transform: scale(1.05);
}

/* Tooltip styles */
.custom-tooltip {
  position: relative;
  cursor: pointer;
}

.custom-tooltip .tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
  margin-bottom: 10px;
  z-index: 100;
}

.custom-tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

.custom-tooltip .tooltip-content:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* Banner shapes */
.banner-image-container {
  position: relative;
  padding: 20px;
}

.banner-shape-1 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  z-index: -1;
}

.banner-shape-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.15);
  z-index: -1;
}
