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

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
}

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

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #FF5252, #FF7043);
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 60px 0;
    }
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.services-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

.services-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-main-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 280px;
}

.card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.card-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

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

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

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

.service-features li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
}

.service-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

@media (max-width: 991px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services-stats {
        gap: 25px;
    }
    
    .floating-card {
        position: static;
        margin-top: 20px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .legal-services-showcase {
        padding: 50px 0;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
    }
}

/* Block 3 */
.digital-transformation-legal {
      padding: 80px 0;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      overflow: hidden;
      position: relative;
    }

    .digital-transformation-legal::before {
      content: '';
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
      background-size: 50px 50px;
      opacity: 0.3;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
    }

    .digital-transformation-legal .container {
      position: relative;
      z-index: 2;
    }

    .section-header {
      margin-bottom: 60px;
    }

    .innovation-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .transformation-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .transformation-subtitle {
      font-size: 1.1rem;
      opacity: 0.9;
      line-height: 1.6;
    }

    .tech-features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .tech-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 25px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .tech-feature-item:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .tech-icon {
      width: 60px;
      height: 60px;
      border-radius: 15px;
      background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

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

    .tech-content h4 {
      margin-bottom: 10px;
      font-size: 1.2rem;
      font-weight: 600;
    }

    .tech-content p {
      margin: 0;
      opacity: 0.9;
      line-height: 1.5;
    }

    .tech-image-container {
      position: relative;
      text-align: center;
    }

    .tech-main-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    .floating-metrics {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: -30px;
      position: relative;
      z-index: 3;
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.95);
      color: #333;
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .metric-value {
      display: block;
      font-size: 1.5rem;
      font-weight: 700;
      color: #667eea;
    }

    .metric-label {
      display: block;
      font-size: 0.9rem;
      opacity: 0.7;
    }

    .innovation-showcase {
      margin: 80px 0;
    }

    .innovation-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      overflow: hidden;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      height: 100%;
    }

    .innovation-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

    .innovation-card.featured {
      border: 2px solid rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.15);
    }

    .innovation-header {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .innovation-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .innovation-card:hover .innovation-image {
      transform: scale(1.1);
    }

    .innovation-overlay {
      background: rgba(0, 0, 0, 0.5);
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      top: 20px;
      right: 20px;
    }

    .innovation-overlay i {
      font-size: 24px;
    }

    .innovation-body {
      padding: 30px;
    }

    .innovation-body h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .innovation-body p {
      margin-bottom: 20px;
      opacity: 0.9;
      line-height: 1.5;
    }

    .innovation-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .tag {
      background: rgba(255, 255, 255, 0.2);
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .digital-cta-section {
      margin-top: 60px;
    }

    .digital-cta-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cta-content h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .cta-content p {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 30px;
    }

    .cta-actions {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-digital-primary {
      background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
      color: white;
      border: none;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn-digital-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-digital-secondary {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3);
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      backdrop-filter: blur(10px);
    }

    .btn-digital-secondary:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .transformation-title {
        font-size: 2rem;
      }

      .tech-features-grid {
        gap: 20px;
      }

      .tech-feature-item {
        flex-direction: column;
        text-align: center;
      }

      .floating-metrics {
        flex-direction: column;
        align-items: center;
      }

      .cta-actions {
        flex-direction: column;
        align-items: center;
      }

      .btn-digital-primary,
      .btn-digital-secondary {
        justify-content: center;
        width: 100%;
        max-width: 300px;
      }
    }

/* Block 4 */
.consultation-booking-form {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  position: relative;
}

.consultation-booking-form::before {
  content: '';
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23667eea" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="%23764ba2" opacity="0.15"/><circle cx="60" cy="30" r="1.5" fill="%23667eea" opacity="0.1"/></svg>');
  background-size: 200px 200px;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.booking-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.booking-header {
  text-align: center;
  padding: 60px 50px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
}

.booking-header::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"><polygon points="0,100 100,0 100,100" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 50px 50px;
}

.header-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  backdrop-filter: blur(10px);
}

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

.booking-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.booking-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.booking-form-container {
  padding: 60px 50px;
}

.consultation-form {
  margin-bottom: 50px;
}

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

.input-group {
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 16px;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 18px 20px 18px 55px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8faff;
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: white;
}

.form-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 25px;
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  border-radius: 16px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 0.95rem;
  font-weight: 500;
}

.benefit-item i {
  color: #667eea;
  font-size: 18px;
}

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

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn i {
  font-size: 18px;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #718096;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  line-height: 1.5;
}

.form-note i {
  color: #667eea;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-note a {
  color: #667eea;
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

.consultation-preview {
  border-top: 1px solid #e2e8f0;
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.preview-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.preview-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

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

.expectation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
}

.expectation-list li i {
  color: #48bb78;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .booking-header {
    padding: 40px 30px;
  }
  
  .booking-title {
    font-size: 1.8rem;
  }
  
  .booking-form-container {
    padding: 40px 30px;
  }
  
  .form-benefits {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .consultation-preview {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .preview-image {
    height: 200px;
  }
  
  .submit-btn {
    padding: 16px 40px;
    font-size: 1rem;
  }
  
  .form-note {
    text-align: left;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .booking-header {
    padding: 30px 20px;
  }
  
  .booking-form-container {
    padding: 30px 20px;
  }
  
  .header-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .header-icon i {
    font-size: 24px;
  }
  
  .booking-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    padding: 16px 18px 16px 50px;
  }
  
  .submit-btn {
    width: 100%;
    padding: 18px;
  }
}
