
/* Block 1 */
.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(108, 117, 125, 0.7) 100%);
  z-index: 2;
}

.hero-banner .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  padding: 3rem 0;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
}

.hero-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  transition: all 0.4s ease;
  transform: translateY(0);
}

.hero-cta-button:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #218838 0%, #1abc9c 100%);
}

.hero-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Block 2 */
.testimonials-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    overflow: hidden;
}

.testimonials-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonials-grid {
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e3f2fd;
}

.testimonial-client-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
}

.testimonial-origin {
    font-size: 0.9rem;
    color: #0d6efd;
    font-weight: 500;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-star {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1.5rem;
    flex: 1;
    font-style: italic;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-stats {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.9);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .testimonials-showcase {
        padding: 60px 0;
    }
    
    .testimonials-main-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-stats {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-rating {
        justify-content: center;
    }
}

/* Block 3 */
.visa-services-overview {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
  position: relative;
  overflow: hidden;
}

.visa-services-overview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(13, 110, 253, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.services-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(13, 110, 253, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd 0%, #6f42c1 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.service-card-featured {
  background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
  color: white;
  transform: scale(1.05);
}

.service-card-featured .service-title,
.service-card-featured .service-description,
.service-card-featured .service-feature {
  color: white;
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card-featured .service-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.service-icon {
  font-size: 2rem;
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.service-feature {
  padding: 0.5rem 0;
  color: #495057;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}

.service-card-featured .service-feature::before {
  color: white;
}

.services-process-flow {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(13, 110, 253, 0.1);
}

.process-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.process-overlay {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-stats {
  text-align: center;
}

.process-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
  line-height: 1;
}

.process-stat-label {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
}

.process-content {
  padding-left: 2rem;
}

.process-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.process-description {
  color: #6c757d;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.process-steps {
  margin-bottom: 2rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.process-step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
}

.process-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.process-step-text {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.process-cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.process-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
  color: white;
}

@media (max-width: 991px) {
  .services-main-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .process-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .process-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .visa-services-overview {
    padding: 60px 0;
  }
  
  .services-main-title {
    font-size: 1.75rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .process-image {
    height: 300px;
  }
  
  .process-overlay {
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
  }
}

/* Block 4 */
.order-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 10;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.form-main-icon {
  font-size: 2.5rem;
  color: white;
}

.form-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.form-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.consultation-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 50px;
}

.form-group {
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 15px;
  gap: 12px;
}

.form-field-icon {
  color: #0d6efd;
  font-size: 1.2rem;
}

.form-input {
  width: 100%;
  padding: 20px 0;
  font-size: 1.1rem;
  border: none;
  border-bottom: 3px solid #e9ecef;
  background: transparent;
  transition: all 0.3s ease;
  color: #495057;
  font-weight: 500;
}

.form-input:focus {
  outline: none;
  border-bottom-color: #0d6efd;
}

.form-field-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  transition: width 0.3s ease;
}

.form-input:focus + .form-field-underline {
  width: 100%;
}

.form-actions {
  text-align: center;
  margin-bottom: 40px;
}

.submit-button {
  position: relative;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  color: white;
  border: none;
  padding: 20px 50px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(13, 110, 253, 0.4);
}

.button-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.button-icon {
  font-size: 1.1rem;
}

.button-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.submit-button:hover .button-overlay {
  left: 100%;
}

.form-benefits {
  border-top: 2px solid #f8f9fa;
  padding-top: 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.benefit-icon {
  color: #28a745;
  font-size: 1.3rem;
}

.benefit-text {
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-image {
  position: absolute;
  border-radius: 20px;
  opacity: 0.1;
  filter: blur(2px);
  object-fit: cover;
  animation: float 6s ease-in-out infinite;
}

.floating-image-1 {
  width: 300px;
  height: 200px;
  top: 20%;
  left: -150px;
  animation-delay: 0s;
}

.floating-image-2 {
  width: 250px;
  height: 180px;
  bottom: 20%;
  right: -120px;
  animation-delay: 3s;
}

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

@media (max-width: 992px) {
  .form-wrapper {
    padding: 40px;
  }
  
  .form-title {
    font-size: 2.2rem;
  }
  
  .floating-image-1,
  .floating-image-2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 60px 0;
  }
  
  .form-wrapper {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .submit-button {
    width: 100%;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .form-icon-container {
    width: 60px;
    height: 60px;
  }
  
  .form-main-icon {
    font-size: 2rem;
  }
  
  .form-input {
    padding: 15px 0;
  }
}
